* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1e3a5f;
    --secondary-dark: #2a4a78;
    --accent-gold: #0b8a9b;
    --light-bg: #f5f5f5;
    --border-light: #e0e0e0;
    --text-primary: #1e3a5f;
    --text-secondary: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background: white;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Top Bar */
.topbar {
    background: #1e3a5f;
    color: #ffffff;
    padding: 11px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.topbar-left i {
    font-size: 12px;
    color: var(--accent-gold);
}

.topbar-middle {
    flex: 1;
    text-align: center;
}

.topbar-middle p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 0 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    font-size: 12px;
    color: var(--accent-gold);
}

.topbar-links {
    display: flex;
    gap: 24px;
}

.topbar-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.topbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.topbar-links a:hover::after {
    width: 100%;
}

/* Middle Header */
.middle-header {
    background: white;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.middle-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header-left {
    flex: 0 0 280px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border-radius: 50px;
    padding: 12px 20px;
    border: 1.5px solid var(--border-light);
    transition: all 0.3s ease;
}

.search-box:hover {
    border-color: var(--accent-gold);
    background: white;
}

.search-box:focus-within {
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 8px 24px rgba(11, 138, 155, 0.15);
}

.search-box input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 13px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.search-box input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.search-btn:hover {
    color: var(--accent-gold);
}

.header-middle {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.logo i {
    font-size: 28px;
    color: var(--accent-gold);
}

.header-right {
    display: flex;
    gap: 28px;
    flex: 0 0 auto;
}

.header-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 13px;
}

.header-action:hover {
    color: var(--accent-gold);
}

.header-action i {
    font-size: 18px;
}

.header-action span {
    font-weight: 500;
    letter-spacing: 0.2px;
}

.badge {
    position: absolute;
    top: -12px;
    right: -14px;
    background: var(--accent-gold);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(11, 138, 155, 0.3);
}

/* Bottom Header - Menu */
.bottom-header {
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.bottom-header .container {
    display: flex;
    justify-content: center;
    padding: 0 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 22px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: center;
}

.menu a:hover {
    color: var(--accent-gold);
}

.menu a:hover::after {
    transform: scaleX(1);
}

.menu i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.menu-item-dropdown:hover i {
    transform: rotate(180deg);
}

/* Submenu */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border: 1px solid var(--border-light);
    border-top: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.menu-item-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    padding: 11px 20px;
    font-weight: 400;
    font-size: 13px;
}

.submenu li a::after {
    display: none;
}

.submenu li a:hover {
    background: var(--light-bg);
    color: var(--accent-gold);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

/* Shop by Category Section */
.category-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 15px;
}

.category-item:hover .category-image {
    transform: scale(1.05);
}

.category-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.category-info h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.category-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Tabbed Products Section */
.products-section {
    padding: 60px 0;
    background: white;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border: 1.5px solid var(--border-light);
    background: white;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.tab-btn.active {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(11, 138, 155, 0.25);
}

.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.product-image {
    width: 100%;
    height: 200px;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 10px;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 16px;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.add-to-cart-btn:hover {
    background: #066b7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 138, 155, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Animated Dual Banner Section */
.dual-banner-section {
    padding: 40px 0;
    background: white;
}

.dual-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.banner-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-large:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.left-banner {
    animation: slideInLeft 0.8s ease-out;
}

.right-banner {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 20px;
}

.banner-large:hover .banner-bg {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
}

.banner-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.banner-overlay h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.banner-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.banner-btn {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.3px;
}

.banner-btn:hover {
    background: #066b7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 138, 155, 0.3);
}

/* Promotional Hero Section */
.promo-section {
    padding: 40px 0;
    background: white;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

/* Left: Carousel Container */
.carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Old promo-banner styling kept for compatibility */
.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
}

.promo-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.banner-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.promo-discount {
    font-size: 24px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.promo-btn {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.promo-btn:hover {
    background: #066b7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 138, 155, 0.3);
}

/* Right: Sidebar with Two Sections */
.promo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-section {
    flex: 1;
    min-height: 210px;
}

.top-section {
    animation: fadeInRight 0.6s ease-out;
}

.bottom-section {
    animation: fadeInRight 0.6s ease-out 0.1s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card styling for sidebar */
.promo-card-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Old promo-cards styling kept for compatibility */
.promo-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    display: block;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 15px;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.66);
}

.card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.card-content h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.card-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Client Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: #fafaf8;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating i {
    font-size: 14px;
    color: var(--accent-gold);
    margin-right: 4px;
}

.review-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: var(--text-primary);
}

.author-info p {
    font-size: 11px;
    color: var(--accent-gold);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a78 100%);
    margin-bottom: 90px;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.newsletter-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form button {
    padding: 14px 40px;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.newsletter-form button:hover {
    background: #066b7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 138, 155, 0.3);
}

.newsletter-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer */
.footer {
    background: #1e3a5f;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(11, 138, 155, 0.15);
    color: var(--accent-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: rgba(11, 138, 155, 0.3);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom i {
    color: var(--accent-gold);
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .topbar .container {
        flex-direction: column;
        gap: 12px;
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
    }

    .topbar-right {
        justify-content: space-between;
    }

    .middle-header .container {
        gap: 30px;
    }

    .header-left {
        flex: 0 0 250px;
    }

    .header-right {
        gap: 28px;
    }

    .menu a {
        padding: 14px 16px;
        font-size: 12px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-banner {
        min-height: 300px;
    }

    .banner-content {
        padding: 30px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .promo-discount {
        font-size: 20px;
    }

    .promo-cards {
        gap: 20px;
    }

    .promo-card {
        min-height: 120px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-item {
        height: 220px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .dual-banner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-large {
        min-height: 300px;
    }

    .banner-overlay {
        padding: 30px;
    }

    .banner-overlay h2 {
        font-size: 24px;
    }

    .banner-overlay p {
        font-size: 13px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .topbar-links {
        flex-direction: column;
        gap: 8px;
    }

    .topbar-right {
        flex-direction: column;
        gap: 10px;
    }

    .middle-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .header-left {
        width: 100%;
        flex: none;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .header-right {
        width: 100%;
        justify-content: space-around;
        gap: 20px;
    }

    .header-action span {
        font-size: 12px;
    }

    .menu a {
        padding: 12px 12px;
        font-size: 11px;
    }

    .dual-banner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-large {
        min-height: 300px;
    }

    .banner-overlay {
        padding: 30px;
    }

    .banner-overlay h2 {
        font-size: 24px;
    }

    .banner-overlay p {
        font-size: 13px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        padding: 12px 16px;
        font-size: 13px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}
