:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f5f0;
    --accent-gold: #b89446;
    --accent-maroon: #8b0000;
    --text-dark: #333;
    --text-light: #777;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --border: 1px solid #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: var(--border);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent-maroon);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-gold);
}

nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    position: relative;
    color: var(--primary-dark);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

.nav-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-maroon);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-badge {
    background-color: var(--accent-maroon);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    min-height: 95vh;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    padding: 0 5%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    color: white;
    animation: slideInRight 1s ease-out 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title br {
    display: none;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.hero-cta {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 18px 45px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: fadeIn 2s ease-out 1s both;
    min-height: 60px;
    min-width: 200px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.hero-cta:hover {
    background-color: var(--accent-maroon);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-notice {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: fadeIn 2.5s ease-out 1.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== SALE SECTION ===== */
.sale-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b0000 0%, #a80000 100%);
    position: relative;
    overflow: hidden;
}

.sale-section::before {
    content: 'SALE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
}

.sale-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.sale-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.sale-timer {
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    gap: 20px;
    animation: pulseTimer 2s infinite;
}

@keyframes pulseTimer {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.sale-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.sale-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.sale-product-card:nth-child(1) { animation-delay: 0.2s; }
.sale-product-card:nth-child(2) { animation-delay: 0.4s; }
.sale-product-card:nth-child(3) { animation-delay: 0.6s; }
.sale-product-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sale-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.sale-badge-large {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 1;
}

.sale-product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sale-product-card:hover .sale-product-img {
    transform: scale(1.1);
}

.sale-product-info {
    padding: 25px;
    text-align: center;
}

.sale-product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.sale-price {
    color: var(--accent-maroon);
    font-weight: 700;
    font-size: 1.5rem;
}

.sale-price del {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-right: 10px;
}

.discount {
    background: var(--accent-maroon);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

/* ===== SHOP BY COLLECTIONS ===== */
.collections {
    padding: 100px 0;
    background-color: var(--primary-light);
    position: relative;
}

.collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 40px 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    transform: translateY(0);
}

.collection-name {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.collection-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 600;
    min-height: 44px;
    min-width: 160px;
}

.collection-btn:hover {
    background: white;
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

/* ===== FEATURED COLLECTIONS ===== */
.featured-collections {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
}

.collections-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.mini-collection-card {
    text-align: center;
    padding: 40px 25px;
    border: var(--border);
    transition: var(--transition);
    background: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.mini-collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.mini-collection-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.mini-collection-card:hover::before {
    transform: scaleX(1);
}

.mini-collection-card h3 {
    font-size: 1.4rem;
    margin-top: 15px;
    color: var(--accent-maroon);
    transition: var(--transition);
}

.mini-collection-card:hover h3 {
    color: var(--accent-gold);
}

.mini-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    transition: var(--transition);
}

.mini-collection-card:hover .mini-icon {
    transform: scale(1.2);
}

/* ===== NEW ARRIVALS & BRIDAL ===== */
.new-arrivals {
    padding: 80px 0;
    background-color: var(--primary-light);
    position: relative;
}

.dual-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.new-items-box {
    background-color: var(--white);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.new-items-box::before {
    content: 'NEW';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-maroon);
    color: white;
    padding: 10px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.new-items-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.item-count {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-maroon);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.bridal-box {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1595777457583-95e059d581b8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80') no-repeat center center/cover;
    color: white;
    padding: 60px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bridal-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.bridal-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.bridal-box p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    align-self: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    min-width: 180px;
}

.btn-light::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: 0.5s;
}

.btn-light:hover {
    background: white;
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.btn-light:hover::before {
    left: 100%;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 100px 0;
    background: white;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

.products-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.view-all {
    color: var(--accent-maroon);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-maroon);
    padding-bottom: 5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    gap: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    border: var(--border);
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.product-card::before {
    content: 'SALE';
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-maroon);
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 1;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px 20px;
    text-align: center;
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.product-card:hover .product-title {
    color: var(--accent-gold);
}

.product-price {
    color: var(--accent-maroon);
    font-weight: 700;
    font-size: 1.3rem;
}

.product-price del {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 10px;
    font-weight: 400;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-top: var(--border);
    border-bottom: var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #aaa;
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-maroon));
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.footer-column ul li a::before {
    content: '›';
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.newsletter input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 16px;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter button {
    width: 100%;
    padding: 15px;
    background: var(--accent-gold);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 5px;
    min-height: 44px;
}

.newsletter button:hover {
    background: var(--accent-maroon);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    min-height: 44px;
    min-width: 44px;
}

.social-link:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--accent-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(184, 148, 70, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-maroon);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .collections-grid, .products-grid, .sale-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    nav ul {
        gap: 1.5rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .dual-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Styling */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0;
        text-align: center;
    }
    
    nav ul.show {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .nav-actions.show {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        display: flex;
        justify-content: space-around;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
        min-height: 50px;
        min-width: 180px;
    }
    
    /* Sale Section */
    .sale-section {
        padding: 60px 0;
    }
    
    .sale-header h2 {
        font-size: 1.8rem;
    }
    
    .sale-timer {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .sale-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Collections */
    .collections, .featured-collections {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .collection-card {
        height: 300px;
    }
    
    .collection-overlay {
        padding: 20px;
    }
    
    .collection-name {
        font-size: 1.5rem;
    }
    
    .collection-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    /* Featured Products */
    .featured-products {
        padding: 60px 0;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-header h2 {
        font-size: 1.8rem;
    }
    
    .product-img {
        height: 200px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Footer */
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-column h3 {
        margin-bottom: 20px;
    }
    
    /* WhatsApp Float */
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 140px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    /* Touch-friendly buttons */
    button, .btn-light, a.nav-icon, .social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .collections-grid, .products-grid, .collections-mini-grid, .sale-products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .sale-header h2 {
        font-size: 2.2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===== ULTRA-MOBILE FIXES ===== */
@media (max-width: 480px) {
    /* Fix hero section text overflow */
    .hero-title {
        font-size: 1.6rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .hero-title br {
        display: block;
        content: ' ';
        margin: 0;
    }
    
    .hero-tagline {
        font-size: 0.9rem !important;
        line-height: 1.4;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }
    
    .hero-cta {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
        min-height: 44px;
        min-width: 160px;
    }
    
    .hero-notice {
        font-size: 0.85rem !important;
        padding: 0 20px;
        line-height: 1.5;
        margin-top: 25px;
    }
    
    /* Fix sale section overflow */
    .sale-header h2 {
        font-size: 1.3rem !important;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .sale-timer {
        font-size: 0.8rem !important;
        padding: 8px 15px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .sale-timer span {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    /* Fix product cards on very small screens */
    .sale-product-card,
    .product-card {
        margin: 0 5px 20px 5px;
    }
    
    .sale-product-title,
    .product-title {
        font-size: 1rem !important;
        line-height: 1.3;
    }
    
    .sale-price,
    .product-price {
        font-size: 1rem !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Fix logo text on mobile */
    .logo-text h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    /* Mobile menu fixes for very small screens */
    .mobile-menu-btn {
        font-size: 1.3rem;
        padding: 8px;
    }
    
    nav ul {
        top: 60px;
        padding: 15px;
    }
    
    nav ul li a {
        padding: 12px 0;
        font-size: 1rem;
    }
    
    .nav-actions.show {
        padding: 12px;
    }
    
    .nav-icon {
        font-size: 1.1rem;
        min-height: 40px;
        min-width: 40px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 360px) {
    /* Hero section for iPhone 5/SE size */
    .hero {
        min-height: 80vh;
        padding: 30px 10px;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 0.85rem !important;
        margin-bottom: 15px;
    }
    
    /* Fix logo layout */
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    /* Adjust padding for very small screens */
    .container {
        padding: 0 10px !important;
    }
    
    /* Fix buttons on tiny screens */
    .hero-cta,
    .btn-light,
    .collection-btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        min-width: 140px;
    }
    
    /* Fix footer text */
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Prevent text overflow globally */
* {
    max-width: 100%;
}

/* Force text wrapping */
h1, h2, h3, h4, h5, p, span, div {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Fix for long words */
.long-text-fix {
    word-break: break-word;
}

/* Fix for iOS Safari text size adjustment */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
