/* ========================================================
   ShoppingSuru - Complete Premium Clean Global Stylesheet
=========================================================== */

/* --- Core Palette & Custom Variables (Urban Fit Theme) --- */
:root {
    --primary: #18181B;          /* Deep Charcoal / Off-Black */
    --primary-hover: #27272A;
    --accent: #C09767;           /* Warm Camel / Gold Accent */
    --accent-hover: #A67C52;     /* Darker Camel */
    --accent-light: #F9F5EF;     /* Soft Light Camel Tint */
    --dark-hero: #18181B;
    --dark-hero-hover: #27272A;
    --bg-main: #F4F1EA;          /* Warm Light Stone Page Background */
    --card-bg: #FFFFFF;          /* Pure White Cards */
    --border-color: #E4E4E7;     /* Clean Subtle Border */
    --text-main: #18181B;        /* Main Body & Headings Text */
    --text-secondary: #71717A;    /* Muted Subtitles & Captions */
    --success: #10B981;
    --sale: #EF4444;
    --rating: #F59E0B;

    /* Legacy Variable Alias Mappings for Compatibility */
    --suru-orange: var(--accent);
    --suru-orange-hover: var(--accent-hover);
}

/* --- General Body & Typography --- */
body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    background-color: var(--bg-main);
    padding-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}
a {
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: var(--accent);
}

/* --- Operational Header Command Alignment Controls --- */
.navbar {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    background-color: var(--card-bg) !important;
    border-bottom: 1px solid var(--border-color);
}

#header-logo {
    transition: height 0.3s ease;
}

/* Header Action Badges Positioning */
.header-badge {
    font-size: 0.7em;
    padding: 0.2em 0.4em;
    top: 5px !important;
    right: 5px !important;
}

/* Navbar Minimalist Toggle Trigger styling */
.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 1.25rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Navigation Component Configurations */
.navbar-nav .dropdown-menu {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.navbar-nav .dropdown-menu .dropdown-item {
    color: var(--text-main);
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--bg-main);
    color: var(--accent);
}

/* --- Omnibox Global Wrapper Correction --- */
.search-block-wrapper {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: var(--card-bg) !important;
    height: 40px !important;
}
.search-block-wrapper .category-select {
    border: none !important;
    background-color: transparent !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    padding: 0 15px !important;
    height: 100% !important;
    box-shadow: none !important;
    cursor: pointer;
}
.search-block-wrapper .search-field-input {
    border: none !important;
    font-size: 0.88rem !important;
    padding: 0 15px !important;
    height: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    flex-grow: 1 !important;
    color: var(--text-main) !important;
    background-color: transparent !important;
}
.search-block-wrapper .search-action-btn {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    border: none !important;
    height: 100% !important;
    padding: 0 22px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    transition: background-color 0.2s ease;
}
.search-block-wrapper .search-action-btn:hover {
    background-color: var(--accent) !important;
}

/* --- Dynamic Cluster Link Alignments --- */
.actions-cluster {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 20px !important;
}
.action-node {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    color: var(--text-main) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
}
.action-node:hover, .action-node:hover i {
    color: var(--accent) !important;
}
.action-node i {
    font-size: 1.4rem !important;
    color: var(--text-main) !important;
}
.badge-bubble {
    position: absolute !important;
    top: -8px !important;
    left: 12px !important;
    background-color: var(--accent) !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--card-bg) !important;
}

/* --- Row 3 Link Navigation Belt Optimization --- */
.categories-navigation-belt {
    background: var(--card-bg) !important;
    border-top: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 8px 0 !important;
}
.belt-links-container {
    display: flex !important;
    gap: 26px !important;
}
.belt-links-container a {
    color: var(--text-main) !important;
    font-weight: 500 !important;
    font-size: 0.88rem !important;
}
.belt-links-container a:hover, .belt-links-container a.active {
    color: var(--accent) !important;
}

/* ========================================================
   Modern Editorial Hero & Promotional System
=========================================================== */

/* 1. Hero Background */
.hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-main) 100%) !important;
    padding: 60px 0;
}

/* 2. Small Badge */
.hero-badge {
    background: var(--accent-light) !important;
    color: var(--accent-hover) !important;
    border: 1px solid var(--accent) !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* 3. Heading Highlight */
.hero-text h1 span {
    color: var(--accent) !important;
}

/* 4. Primary Button */
.btn-hero-primary {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary) !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.btn-hero-primary:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #ffffff !important;
}

/* 5. Outline Button */
.btn-hero-outline {
    background: transparent !important;
    color: var(--dark-hero) !important;
    border: 2px solid var(--dark-hero) !important;
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.btn-hero-outline:hover {
    background: var(--dark-hero) !important;
    color: #ffffff !important;
}

/* 6. Hero Feature Icon */
.hero-feature-icon {
    background: var(--accent-light) !important;
    color: var(--dark-hero) !important;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 7. Promise Card Container & Hover */
.promise-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.promise-card:hover {
    box-shadow: 0 12px 25px rgba(24, 24, 27, 0.08) !important;
    border-color: var(--accent) !important;
}

/* 8. Promise Icon */
.promise-icon {
    background: var(--accent-light) !important;
    color: var(--accent) !important;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* 9. Bottom Features Bar */
.hero-bottom-features {
    background: #FFFFFF !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    padding: 20px 30px;
}

/* --- Legacy Hero Carousel Fallback Dimensions --- */
.hero-carousel-wrapper { 
    aspect-ratio: 16 / 6; 
    width: 100%; 
    background-color: var(--border-color); 
    margin-top: 0 !important;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
} 
.hero-carousel-wrapper .carousel-inner, .hero-carousel-wrapper .carousel-item { 
    height: 100%; 
}
.hero-carousel-wrapper .carousel-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.carousel-caption { 
    background: linear-gradient(to right, rgba(24, 24, 27, 0.85), rgba(24, 24, 27, 0)); 
    padding: 2rem; 
    bottom: 20%; 
    left: 10%; 
    right: 50%; 
    text-align: left;
}
.carousel-caption h5 { 
    font-size: 2.5rem; 
    color: #ffffff; 
}
.carousel-caption p { 
    font-size: 1.1rem; 
    color: var(--bg-main); 
}
.carousel-control-prev-icon, .carousel-control-next-icon { 
    background-color: rgba(24, 24, 27, 0.6); 
    border-radius: 50%; 
    padding: 1rem; 
}

/* --- Support Bar (USP Grid Strip) --- */
.support-bar-area { 
    padding: 30px 0; 
    border-bottom: 1px solid var(--border-color); 
    background: var(--card-bg); 
}
.support-item { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center;
}
.support-item i { 
    font-size: 32px; 
    color: var(--accent); 
    margin-right: 15px; 
}
.support-item h4 { 
    margin: 0; 
    font-size: 15px; 
    color: var(--text-main); 
}
.support-item p { 
    margin: 0; 
    font-size: 13px; 
    color: var(--text-secondary); 
}

/* --- Main Content Grid Container Structure --- */
.main-content-area { padding: 50px 0; }
.section-title-container { 
    text-align: left !important;
    margin-bottom: 30px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title { 
    font-size: 1.35rem; 
    font-weight: 700;
    text-transform: none;
    color: var(--text-main); 
    position: relative;
    padding-bottom: 0;
}
.section-title::after { 
    display: none !important; 
}

/* ========================================================
   Clean Minimal Product Card Layout
=========================================================== */
.product-card {
    border: 1px solid var(--border-color) !important; 
    text-align: left !important;
    background: var(--card-bg) !important; 
    border-radius: 12px !important; 
    transition: box-shadow 0.25s ease, border-color 0.25s ease; 
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: none !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important; 
    border-color: var(--accent) !important;
}

.product-card .product-image-container {
    position: relative; 
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--bg-main);
}

.product-card .card-img-top {
    height: 240px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}
.product-card:hover .card-img-top {
    transform: scale(1.02);
}

/* Floating Clean Wishlist Overlay Bubble */
.product-hover-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transform: none;
    z-index: 5; 
}

.product-hover-actions .btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--card-bg) !important; 
    color: var(--text-secondary) !important; 
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-hover-actions .btn-action:hover {
    color: var(--sale) !important;
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 14px !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .card-title {
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    color: var(--text-main) !important; 
    line-height: 1.3;
}

.product-card .card-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
}

/* Clear Price Stack Container Row */
.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.product-card .price {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
}

.product-card .price .old {
    text-decoration: line-through;
    color: var(--text-secondary) !important; 
    font-size: 0.82rem !important;
    margin-left: 0 !important;
}
.product-card .discount-tag {
    color: var(--sale);
    font-size: 0.82rem;
    font-weight: 600;
}

/* Sale Tag Badge Component */
.product-card .sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent) !important; 
    color: #ffffff !important; 
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

/* --- Shop by Category System Layouts --- */
.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.category-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover img {
    transform: scale(1.03);
}
.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 24, 27, 0.85), rgba(24, 24, 27, 0.1)); 
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}
.category-card-overlay h3 {
    color: #ffffff; 
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* --- Vendor Promo CTA Banner Strip --- */
.vendor-cta-banner {
    background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem 2rem;
    border-radius: 12px;
    overflow: hidden;
}
.vendor-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 27, 0.7); 
    z-index: 1;
}
.vendor-cta-banner .cta-content {
    position: relative;
    z-index: 2;
}
.btn-cta-vendor {
    background-color: var(--accent) !important; 
    color: #ffffff !important; 
    font-weight: bold;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}
.btn-cta-vendor:hover {
    background-color: var(--accent-hover) !important; 
}

/* --- Dark Layout Footer System --- */
.footer-area { 
    background-color: var(--primary) !important; 
    color: #A1A1AA !important; 
    padding: 50px 0 20px 0; 
}
.widget-title { 
    color: #FFFFFF !important; 
    font-size: 1.05rem; 
    font-weight: 600; 
    margin-bottom: 20px; 
}
.footer-area a { 
    color: #A1A1AA !important; 
}
.footer-area a:hover { 
    color: var(--accent) !important; 
}
.newsletter-form .form-control { 
    border-radius: 4px 0 0 4px !important; 
    border: none; 
    background-color: #27272A;
    color: #ffffff;
}
.newsletter-form button { 
    background: var(--accent) !important; 
    color: #ffffff; 
    border-radius: 0 4px 4px 0 !important; 
    border: none; 
}
.newsletter-form button:hover {
    background: var(--accent-hover) !important;
}
.copyright-text { margin: 0; }
.payment-methods { text-align: right; }
.payment-methods img { margin-left: 5px; }

.footer-bottom {
    background-color: #0F0F11 !important; 
    padding: 15px 0;
    color: #71717A; 
}
.footer-bottom a {
    color: #E4E4E7; 
    font-weight: bold;
}
.footer-bottom a:hover {
    color: var(--accent) !important;
}

.btn-wishlist.active {
    background-color: var(--sale) !important; 
    color: #ffffff !important; 
    border-color: var(--sale) !important;
}

/* Clean UI Star Ratings Icon Sets */
.star-rating {
    font-size: 0.78rem; 
    color: var(--rating); 
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0;
}
.star-rating .review-count {
    font-size: 0.75rem; 
    color: var(--text-secondary); 
    margin-left: 4px; 
}

.rating-stars {
    display: inline-block;
    border: none;
}
.rating-stars > input {
    display: none;
}
.rating-stars > label {
    color: var(--border-color); 
    float: right;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.rating-stars > label:before {
    content: '\f586'; 
    font-family: 'bootstrap-icons';
}
.rating-stars > label:hover,
.rating-stars > label:hover ~ label { 
    color: var(--rating); 
}
.rating-stars > input:checked ~ label {
    color: var(--rating); 
}

/* --- Marketplace Promotional Banners --- */
.promo-banner {
    position: relative;
    padding: 6rem 2rem;
    background-image: url('https://images.pexels.com/photos/1488463/pexels-photo-1488463.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); 
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    color: #ffffff; 
    overflow: hidden; 
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 27, 0.6); 
    z-index: 1;
}
.promo-banner .promo-banner-content {
    position: relative;
    z-index: 2;
}
.promo-banner .promo-title {
    font-size: 3rem; 
    font-weight: 700;
    color: #ffffff; 
    text-transform: uppercase;
}
.promo-banner .promo-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #E4E4E7; 
}

/* Grand Opening Campaign Subsystems */
.grand-opening-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #27272A 100%);
    color: #ffffff;
    text-align: center;
}
.grand-opening-section h2 {
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff; 
}
.grand-opening-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #E4E4E7; 
}
.offer-card-wrapper {
    margin-top: 2rem;
}
.offer-card {
    background-color: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(5px); 
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
}
.offer-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.offer-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff; 
    margin-bottom: 0.5rem;
}
.offer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #E4E4E7; 
    margin-bottom: 1.5rem;
}
.btn-grand-opening {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}
.btn-grand-opening:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
}

/* Custom Ribbon Overrides */
.usp-section-bg {
    padding: 0.3rem 0;
    background: var(--primary);
    color: #ffffff;
    text-align: center;
}
.usp-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff !important; 
    margin-bottom: 0.1rem;
}
.usp-description {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: #E4E4E7 !important; 
}

/* Marketplace Vendor Onboarding Layouts */
.become-seller-section {
    background: var(--primary); 
    color: #ffffff; 
    padding: 4rem 0;
    text-align: center;
}
.seller-cta-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #ffffff !important; 
}
.seller-cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #E4E4E7 !important; 
}

.category-grid .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--card-bg);
}
.category-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.category-grid .card-img-top {
    height: 200px;
    object-fit: cover;
}
.category-grid .card-body {
    padding: 1.5rem;
    text-align: center;
}

/* ========================================================
   MEDIA QUERIES FOR MOBILE RESPONSIVENESS OVERRIDES
=========================================================== */
@media (max-width: 991.98px) {
    body { 
        padding-top: 70px !important; 
        padding-bottom: 60px;
    }
    #header-logo { height: 32px !important; }
    
    .product-card .card-img-top {
        height: 160px;
    }
    .product-card .card-title {
        font-size: 0.88rem; 
    }
    .product-card .price {
        font-size: 0.95rem; 
    }
    .product-hover-actions {
        top: 8px; 
        right: 8px;
    }
    .product-hover-actions .btn-action {
        width: 30px; 
        height: 30px;
        font-size: 0.85rem;
    }

    .category-card img {
        height: 160px;
    }
    .category-card-overlay h3 {
        font-size: 1.2rem;
    }

    /* Fixed Bottom Nav Structure Adjustments */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--card-bg);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        z-index: 1030;
        justify-content: space-around;
        padding: 0;
    }
    .bottom-nav .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 0;
        color: var(--text-secondary);
        font-size: 0.75rem;
    }
    .bottom-nav .nav-link i {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }
    .bottom-nav .nav-link.active {
        color: var(--accent);
    }
}

/* Medium Tablets Grid Adjustment Profiles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .product-card .card-img-top {
        height: 200px;
    }
    .category-card img {
        height: 250px;
    }
}

/* Authentication Identity Screen adjustments */
.login-card .text-center img {
    max-height: 100px;
    width: auto;
}
@media (max-width: 767.98px) {
    .login-card .text-center img {
        max-height: 60px;
    }
}