
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
    background-color: #3d1f0f;
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-banner a {
    color: white;
    text-decoration: underline;
}

.top-banner .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
}

.top-banner .support-text {
    white-space: nowrap;
}

.top-banner .promo-text {
    text-align: center;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateX(3px);
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(61, 31, 15, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-circle {
    transform: rotate(360deg);
    box-shadow: 0 5px 15px rgba(61, 31, 15, 0.4);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: #1a1a1a;
    margin: 0 15px;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #f4b860, #e5a850);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3d1f0f;
    background-color: rgba(244, 184, 96, 0.1);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 19px;
    align-items: center;
}

.nav-icons i {
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.nav-icons i:hover {
    color: #3d1f0f;
    background-color: rgba(244, 184, 96, 0.15);
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 6px;
    position: relative;
    background-color: rgba(61, 31, 15, 0.05);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(61, 31, 15, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: rgba(61, 31, 15, 0.15);
}

.navbar-toggler-icon {
    width: 26px;
    height: 2px;
    background-color: #3d1f0f;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: #3d1f0f;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    transition: all 0.4s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.5;
}

.hero-section::before {
    top: 50px;
    left: 50px;
}

.hero-section::after {
    bottom: 50px;
    left: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-sale {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.badge-sale i {
    font-size: 22px;
    color: #3d1f0f;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.btn-shop {
    background-color: #3d1f0f;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-shop:hover {
    background-color: #2a1508;
    transform: translateX(5px);
}

.btn-shop i {
    font-size: 16px;
}

.hero-image { 
    position: relative; 
    text-align: right; 
} 

.hero-image img { 
    max-width: 100%; 
    height: 550px; 
    position: relative; 
    z-index: 1; 
}

.summer-badge {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.summer-badge-inner {
    width: 100px;
    height: 100px;
    background: #f4b860;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed white;
}

.summer-badge i {
    font-size: 35px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.summer-text {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 50px 0;
    background-color: white;
    border-top: 1px solid #e5e5e5;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 42px;
    color: #f4b860;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   PREMIUM CATEGORIES SECTION - NEW
   ============================================ */
.premium-categories-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.premium-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244, 184, 96, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 31, 15, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.premium-categories-section .container {
    position: relative;
    z-index: 1;
}

.premium-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f4b860;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding: 0 50px;
}

.premium-badge::before,
.premium-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4b860);
}

.premium-badge::before {
    right: 100%;
    margin-right: 10px;
}

.premium-badge::after {
    left: 100%;
    margin-left: 10px;
    background: linear-gradient(90deg, #f4b860, transparent);
}

.premium-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.premium-section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Premium Category Cards */
.premium-category-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 450px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.premium-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #f4b860;
}

.category-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    opacity: 0.1;
    transition: all 0.5s ease;
    border-radius: 20px 20px 0 0;
}

.premium-category-card:hover .category-gradient-bg {
    opacity: 0.2;
    height: 200px;
}

.women-gradient {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.men-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.accessories-gradient {
    background: linear-gradient(135deg, #f4b860 0%, #e5a850 100%);
}

.footwear-gradient {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.kids-gradient {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.seasonal-gradient {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4b860 0%, #e5a850 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(244, 184, 96, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.premium-category-card:hover .category-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(244, 184, 96, 0.5);
}

.category-icon-wrapper i {
    font-size: 36px;
    color: #1a1a1a;
}

.category-content-wrapper {
    position: relative;
    z-index: 2;
}

.category-title-premium {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.premium-category-card:hover .category-title-premium {
    color: #3d1f0f;
}

.category-desc-premium {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat-item-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    background: #f8f8f8;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.premium-category-card:hover .stat-item-cat {
    background: #f4b860;
    color: #1a1a1a;
}

.stat-item-cat i {
    font-size: 14px;
    color: #f4b860;
}

.premium-category-card:hover .stat-item-cat i {
    color: #1a1a1a;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.category-features li:hover {
    color: #3d1f0f;
    transform: translateX(5px);
}

.category-features li i {
    color: #28a745;
    font-size: 16px;
}

.category-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(61, 31, 15, 0.3);
    position: relative;
    overflow: hidden;
}

.category-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.category-btn-premium:hover::before {
    left: 100%;
}

.category-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 31, 15, 0.5);
    color: white;
}

.category-btn-premium i {
    transition: transform 0.3s ease;
}

.category-btn-premium:hover i {
    transform: translateX(5px);
}

.category-hover-effect {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(244, 184, 96, 0.05) 100%);
    transition: bottom 0.5s ease;
    pointer-events: none;
}

.premium-category-card:hover .category-hover-effect {
    bottom: 0;
}

/* ============================================
   TOP SELLER PRODUCTS SECTION
   ============================================ */
.top-products-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title-main {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.section-description {
    font-size: 16px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.product-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: none;
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #3d1f0f;
    color: white;
}

.products-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card-top {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.product-card-top:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image-top {
    position: relative;
    overflow: hidden;
    padding-top: 125%;
    background-color: #f9f9f9;
}

.product-image-top img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card-top:hover .product-image-top img {
    transform: scale(1.05);
}

.discount-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-actions-top {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
}

.product-card-top:hover .product-actions-top {
    opacity: 1;
    transform: translateX(0);
}

.action-btn-top {
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.action-btn-top:hover {
    background-color: #3d1f0f;
    color: white;
}

.countdown-timer {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f4b860 0%, #e5a850 100%);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.timer-box {
    text-align: center;
    flex: 1;
}

.timer-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 3px;
}

.timer-label {
    font-size: 10px;
    color: #1a1a1a;
    font-weight: 500;
}

.product-info-top {
    padding: 20px;
}

.product-category-top {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.product-name-top {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-rating-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars-top {
    color: #ffc107;
    font-size: 14px;
}

.rating-value-top {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.product-price-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price-top {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price-top {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 50%, #3d1f0f 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="15" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.stats-bar .row {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(244, 184, 96, 0.3), transparent);
}

.col-lg:last-child .stat-item::after {
    display: none;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #f4b860;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(244, 184, 96, 0.3);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   LIMITED TIME OFFERS SECTION
   ============================================ */
.limited-offers-section {
    padding: 80px 0;
}

.offers-card {
    border-radius: 15px;
    overflow: hidden;
}

.offers-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.offers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offers-content {
    padding: 80px 60px;
}

.offers-badge {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.offers-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.offers-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #3d1f0f;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-shop-now:hover {
    background-color: #2a1508;
    transform: translateX(5px);
}

.btn-shop-now i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-shop-now:hover i {
    transform: translateX(5px);
}

/* ============================================
   DEALS OF THE DAY SECTION
   ============================================ */
.deals-section {
    padding: 80px 0;
    background-color: #fff;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.deals-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.deals-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.deals-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.deal-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deal-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: #e0e0e0;
}

.deal-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
}

.deal-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.08);
}

.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.deal-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.deal-card:hover .deal-actions {
    opacity: 1;
    transform: translateX(0);
}

.deal-action-btn {
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.deal-action-btn:hover {
    background-color: #3d1f0f;
    color: white;
    transform: scale(1.1);
}

.deal-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deal-category {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.deal-current {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.deal-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.deal-stars {
    color: #ffc107;
    font-size: 14px;
}

.deal-rating-num {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.deal-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.deal-shop-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 13px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deal-shop-btn:hover {
    background-color: #3d1f0f;
    border-color: #3d1f0f;
    color: white;
}

.deal-shop-btn i {
    transition: transform 0.3s ease;
}

.deal-shop-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   LUXURY COLLECTION BANNERS - WEBSITE COLORS
   ============================================ */

.luxury-collection-section {
    margin-top: 0;
}

.luxury-banner {
    position: relative;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(61, 31, 15, 0.15);
}

.luxury-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(61, 31, 15, 0.25);
}

/* Men's Banner - Brown Theme */
.men-luxury-banner {
    background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 50%, #3d1f0f 100%);
}

/* Women's Banner - Gold Theme */
.women-luxury-banner {
    background: linear-gradient(135deg, #f4b860 0%, #e5a850 50%, #d9974a 100%);
}

/* Banner Overlay */
.luxury-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(244, 184, 96, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Pattern Background */
.luxury-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

/* Shine Effect */
.luxury-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Content */
.luxury-content {
    position: relative;
    z-index: 3;
    padding: 50px 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Luxury Tag */
.luxury-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: white;
    width: fit-content;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.luxury-banner:hover .luxury-tag {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.luxury-tag i {
    color: #f4b860;
    font-size: 14px;
}

.women-luxury-banner .luxury-tag i {
    color: #3d1f0f;
}

/* Icon Circle */
.luxury-icon-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.luxury-banner:hover .luxury-icon-circle {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.luxury-icon-circle i {
    font-size: 42px;
    color: #f4b860;
}

.women-luxury-banner .luxury-icon-circle i {
    color: white;
}

/* Title */
.luxury-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.women-luxury-banner .luxury-title {
    color: #3d1f0f;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Subtitle */
.luxury-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.women-luxury-banner .luxury-subtitle {
    color: rgba(61, 31, 15, 0.8);
}

/* Description */
.luxury-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 450px;
}

.women-luxury-banner .luxury-description {
    color: rgba(61, 31, 15, 0.85);
}

/* Stats Row */
.luxury-stats-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding: 20px 0;
}

.luxury-stat-item {
    text-align: center;
}

.luxury-stat-item .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #f4b860;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.women-luxury-banner .luxury-stat-item .stat-number {
    color: #3d1f0f;
}

.luxury-stat-item .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.women-luxury-banner .luxury-stat-item .stat-label {
    color: rgba(61, 31, 15, 0.7);
}

.luxury-stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.women-luxury-banner .luxury-stat-divider {
    background: linear-gradient(to bottom, transparent, rgba(61, 31, 15, 0.3), transparent);
}

/* Button */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #3d1f0f;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 184, 96, 0.2), transparent);
    transition: left 0.6s ease;
}

.luxury-btn:hover::before {
    left: 100%;
}

.luxury-btn:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f4b860;
    color: white;
}

.women-luxury-banner .luxury-btn {
    background: #3d1f0f;
    color: white;
}

.women-luxury-banner .luxury-btn:hover {
    background: #5a2f18;
}

.luxury-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.luxury-btn:hover i {
    transform: translateX(5px);
}

/* Geometric Shapes */
.luxury-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    animation: float-geo 15s ease-in-out infinite;
}

.geo-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.geo-shape.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 8%;
    animation-delay: 5s;
    border-radius: 50%;
}

.geo-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation-delay: 10s;
    transform: rotate(15deg);
}

@keyframes float-geo {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(225deg);
        opacity: 0.6;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3d1f0f 0%, #2a1508 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 200px;
    color: rgba(255,255,255,0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #f4b860;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4b860, #e5a850);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: white;
}

.testimonial-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ============================================
   INSTAGRAM/FACEBOOK SECTION
   ============================================ */
.instagram-section {
    padding: 80px 0;
    text-align: center;
}

.instagram-section-badge {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.instagram-section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0f0f0;
    display: block;
    text-decoration: none;
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 31, 15, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-icon {
    font-size: 48px;
    color: white;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-section-badge {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.blog-section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #f4b860;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #3d1f0f;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #3d1f0f;
    gap: 12px;
}

.blog-read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 184, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 31, 15, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 1;
}

.faq-section-badge {
    font-size: 14px;
    color: #f4b860;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section-badge::before,
.faq-section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4b860);
}

.faq-section-badge::before {
    right: 100%;
    margin-right: 15px;
}

.faq-section-badge::after {
    left: 100%;
    margin-left: 15px;
    background: linear-gradient(90deg, #f4b860, transparent);
}

.faq-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.faq-section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f4b860 0%, #e5a850 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #f4b860;
    box-shadow: 0 12px 32px rgba(244, 184, 96, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.5;
}

.faq-question:hover {
    color: #3d1f0f;
}

.faq-item.active .faq-question {
    color: #3d1f0f;
    padding-bottom: 20px;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4b860 0%, #e5a850 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(244, 184, 96, 0.3);
}

.faq-item:hover .faq-icon-wrapper {
    box-shadow: 0 6px 16px rgba(244, 184, 96, 0.4);
    transform: scale(1.05);
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 100%);
    transform: rotate(135deg);
    box-shadow: 0 6px 16px rgba(61, 31, 15, 0.3);
}

.faq-icon {
    font-size: 18px;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
}

.faq-item.active .faq-icon {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    padding: 0 30px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 30px 24px 30px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding-left: 0;
    position: relative;
}

.faq-answer p::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 4px;
    height: 4px;
    background-color: #f4b860;
    border-radius: 50%;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.newsletter-badge {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.newsletter-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3d1f0f;
    box-shadow: 0 0 0 3px rgba(61, 31, 15, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 15px 35px;
    background-color: #3d1f0f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.newsletter-btn:hover {
    background-color: #2a1508;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 31, 15, 0.3);
}

.newsletter-icon {
    width: 45px;
    height: 45px;
    background-color: #f4b860;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.newsletter-icon i {
    font-size: 20px;
    color: #1a1a1a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #3d1f0f;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social i {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-social i:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 25px;
    font-size: 14px;
    color: #ccc;
}

.footer-selects {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-selects select {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-selects select:hover {
    border-color: rgba(255,255,255,0.5);
}

.footer-selects select option {
    background-color: #3d1f0f;
    color: white;
}

.footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px - 991px)
   ============================================ */
@media (max-width: 991px) and (min-width: 768px) {
    .navbar-brand {
        font-size: 18px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .navbar-nav {
        margin-top: 20px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
        padding: 12px 20px;
        text-align: center;
        font-size: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-icons {
        margin-top: 20px;
        justify-content: center;
        width: 100%;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px 15px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .hero-section {
        padding: 60px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 15px;
    }

    .summer-badge {
        width: 100px;
        height: 100px;
    }

    .summer-badge-inner {
        width: 85px;
        height: 85px;
    }

    .summer-badge i {
        font-size: 30px;
    }

    .features-section {
        padding: 40px 0;
    }

    .feature-box {
        margin-bottom: 25px;
    }

    /* Premium Categories Tablet */
    .premium-categories-section {
        padding: 80px 0;
    }

    .premium-section-title {
        font-size: 36px;
    }

    .premium-category-card {
        padding: 35px 25px;
        min-height: 420px;
    }

    .category-title-premium {
        font-size: 24px;
    }

    /* Top Products Tablet */
    .top-products-section {
        padding: 60px 0;
    }

    .section-title-main {
        font-size: 32px;
    }

    .products-grid-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Limited Offers Tablet */
    .limited-offers-section {
        padding: 60px 0;
    }

    .offers-image {
        min-height: 400px;
    }

    .offers-content {
        padding: 50px 40px;
    }

    .offers-title {
        font-size: 36px;
    }

    /* Deals Section Tablet */
    .deals-section {
        padding: 60px 0;
    }

    .deals-header {
        flex-direction: column;
        gap: 20px;
    }

    .deals-title {
        font-size: 32px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Premium Collection Banners Tablet */
    /* Luxury Banners Tablet */
    .luxury-banner {
        min-height: 450px;
    }

    .luxury-content {
        padding: 45px 35px;
    }

    .luxury-icon-circle {
        width: 80px;
        height: 80px;
    }

    .luxury-icon-circle i {
        font-size: 36px;
    }

    .luxury-title {
        font-size: 34px;
    }

    .luxury-subtitle {
        font-size: 14px;
    }

    .luxury-description {
        font-size: 14px;
    }

    .luxury-stat-item .stat-number {
        font-size: 28px;
    }

    .luxury-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Testimonials Tablet */
    .testimonials-section {
        padding: 60px 0;
    }

    /* Instagram Section Tablet */
    .instagram-section {
        padding: 60px 0;
    }

    .instagram-section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Blog Section Tablet */
    .blog-section {
        padding: 60px 0;
    }

    .blog-section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* FAQ Section Tablet */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-section-title {
        font-size: 36px;
    }

    /* Newsletter Section Tablet */
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-title {
        font-size: 32px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Top Banner Mobile */
    .top-banner {
        font-size: 12px;
        padding: 10px 15px;
    }

    .top-banner .support-text {
        display: none;
    }

    .top-banner .promo-text {
        font-size: 11px;
        padding: 0 5px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 12px 0;
    }

    .navbar-brand {
        font-size: 17px;
    }

    .logo-circle {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .navbar-nav {
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-icons {
        margin-top: 15px;
        justify-content: center;
        gap: 20px;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px 15px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-shop {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .summer-badge {
        width: 90px;
        height: 90px;
    }

    /* Features Mobile */
    .features-section {
        padding: 40px 15px;
    }

    /* Premium Categories Mobile */
    .premium-categories-section {
        padding: 60px 15px;
    }

    .premium-section-title {
        font-size: 32px;
    }

    .premium-category-card {
        padding: 30px 20px;
        min-height: 400px;
    }

    .category-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .category-icon-wrapper i {
        font-size: 32px;
    }

    .category-title-premium {
        font-size: 24px;
    }

    .category-desc-premium {
        font-size: 14px;
    }

    /* Top Products Mobile */
    .top-products-section {
        padding: 50px 15px;
    }

    .section-title-main {
        font-size: 28px;
    }

    .products-grid-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Stats Bar Mobile */
    .stat-item::after {
        display: none;
    }

    .col-6:nth-child(even) .stat-item::after {
        display: none;
    }

    /* Limited Offers Mobile */
    .limited-offers-section {
        padding: 50px 15px;
    }

    .offers-image {
        min-height: 350px;
    }

    .offers-content {
        padding: 40px 30px;
    }

    .offers-title {
        font-size: 28px;
    }

    /* Deals Section Mobile */
    .deals-section {
        padding: 50px 15px;
    }

    .deals-title {
        font-size: 28px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Luxury Banners Mobile */
    .luxury-collection-section {
        margin-top: 40px;
    }

    .luxury-banner {
        min-height: 420px;
        margin-bottom: 20px;
    }

    .luxury-content {
        padding: 40px 25px;
    }

    .luxury-tag {
        font-size: 12px;
        padding: 7px 15px;
    }

    .luxury-icon-circle {
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }

    .luxury-icon-circle i {
        font-size: 34px;
    }

    .luxury-title {
        font-size: 28px;
    }

    .luxury-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .luxury-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .luxury-stats-row {
        gap: 20px;
        padding: 18px 0;
        margin-bottom: 30px;
    }

    .luxury-stat-item .stat-number {
        font-size: 26px;
    }

    .luxury-stat-item .stat-label {
        font-size: 12px;
    }

    .luxury-stat-divider {
        height: 45px;
    }

    .luxury-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 50px 15px;
    }

    /* Instagram Section Mobile */
    .instagram-section {
        padding: 50px 15px;
    }

    .instagram-section-title {
        font-size: 28px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog Section Mobile */
    .blog-section {
        padding: 50px 15px;
    }

    .blog-section-title {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 50px 15px;
    }

    .faq-section-title {
        font-size: 30px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    /* Newsletter Section Mobile */
    .newsletter-section {
        padding: 50px 15px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 15px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max 576px)
   ============================================ */
@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
    }

    .premium-section-title {
        font-size: 26px;
    }

    .premium-category-card {
        padding: 25px 18px;
    }

    .category-title-premium {
        font-size: 22px;
    }

    .section-title-main {
        font-size: 24px;
    }

    .products-grid-top {
        grid-template-columns: 1fr;
    }

    .offers-title {
        font-size: 24px;
    }

    .deals-title {
        font-size: 24px;
    }

    .banner-title-premium {
        font-size: 24px;
    }

    /* Luxury Banners Small Mobile */
    .luxury-banner {
        min-height: 400px;
    }

    .luxury-content {
        padding: 35px 20px;
    }

    .luxury-icon-circle {
        width: 70px;
        height: 70px;
    }

    .luxury-icon-circle i {
        font-size: 30px;
    }

    .luxury-title {
        font-size: 24px;
    }

    .luxury-subtitle {
        font-size: 12px;
    }

    .luxury-description {
        font-size: 13px;
    }

    .luxury-stat-item .stat-number {
        font-size: 24px;
    }

    .luxury-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-section-title {
        font-size: 26px;
    }

    .newsletter-title {
        font-size: 24px;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL (max 400px)
   ============================================ */
@media (max-width: 400px) {
    .hero-title {
        font-size: 22px;
    }

    .premium-section-title {
        font-size: 22px;
    }

    .section-title-main {
        font-size: 22px;
    }
}

/* ============================================
   DESKTOP LARGE SCREENS (min 1200px)
   ============================================ */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-section {
        min-height: 650px;
    }
}