/* style.css - COMPLETE FIXED VERSION */

/* ========== RESET & VARIABLES ========== */
:root {
    --primary-gold: #D4AF37;
    --dark-navy: #1a365d;
    --rich-red: #800000;
    --cream: #F8F5F0;
    --light-gold: #F5E6C9;
    --charcoal: #2D3748;
    --white: #FFFFFF;
    --light-gray: #F7FAFC;
    --medium-gray: #E2E8F0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-navy);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}


.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
}

.btn-secondary:hover {
    background: var(--dark-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.logo-text h1 {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.2;
}

.tagline {
    font-size: 0.8rem;
    color: var(--primary-gold);
    margin: 0;
    font-style: italic;
}

/* Navigation */
.main-nav {
    position: relative;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

.nav-btn {
    background: var(--primary-gold);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-xl);
    z-index: 100;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== HERO SECTION WITH BACKGROUND IMAGE ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #000;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/web-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: #fff;
}

.hero-text-container {
    padding: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-image-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-text-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.image-text-line-1,
.image-text-line-2,
.image-text-line-3 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.image-text-line-1 {
    font-size: 2.8rem;
    color: #D4AF37;
    margin-bottom: 5px;
}

.image-text-line-2 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.image-text-line-3 {
    font-size: 2.5rem;
    color: #f8f8f8;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D4AF37;
    color: #000;
}

.btn-primary:hover {
    background: #c19b2c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #D4AF37;
    transform: translateY(-3px);
}

.hero-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    grid-column: 1 / -1;
}

.hero-seo-tags span {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
/* ===== ENHANCED HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), 
                url('images/web-1.jpg') center/cover no-repeat fixed;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    color: #fff;
}

.hero-text-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title-line-1 {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.hero-title-line-2 {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0.9;
    color: #f8f8f8;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #D4AF37;
    color: #000;
    border: 2px solid #D4AF37;
}

.btn-primary:hover {
    background: #000;
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-3px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.hero-seo-tags span {
    background: rgba(212, 175, 55, 0.15);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
}

.hero-image-tag {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.exclusive-tag {
    background: rgba(0, 0, 0, 0.7);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.exclusive-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.mens-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(212, 175, 55, 0.3);
}

.collection-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #f8f8f8;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title-line-1 {
        font-size: 3.8rem;
    }
    .hero-title-line-2 {
        font-size: 3rem;
    }
    .exclusive-line {
        font-size: 2.5rem;
    }
    .mens-line {
        font-size: 4rem;
    }
    .collection-line {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-title-line-1 {
        font-size: 3.2rem;
    }
    
    .hero-title-line-2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 35px;
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .exclusive-tag {
        padding: 40px 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .exclusive-line {
        font-size: 2.2rem;
    }
    
    .mens-line {
        font-size: 3.5rem;
    }
    
    .collection-line {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .hero-title-line-1 {
        font-size: 2.5rem;
    }
    
    .hero-title-line-2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .exclusive-tag {
        padding: 30px 20px;
    }
    
    .exclusive-line {
        font-size: 1.8rem;
    }
    
    .mens-line {
        font-size: 2.8rem;
    }
    
    .collection-line {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-title-line-1 {
        font-size: 2rem;
    }
    
    .hero-title-line-2 {
        font-size: 1.6rem;
    }
    
    .hero-seo-tags {
        justify-content: center;
    }
    
    .hero-seo-tags span {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* ===== RESPONSIVE DESIGN ===== */

/* For tablets */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .image-text-line-1 {
        font-size: 2.2rem;
    }
    
    .image-text-line-2 {
        font-size: 3.5rem;
    }
    
    .image-text-line-3 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .image-text-content {
        padding: 30px 20px;
    }
    
    .image-text-line-1 {
        font-size: 1.8rem;
    }
    
    .image-text-line-2 {
        font-size: 2.8rem;
    }
    
    .image-text-line-3 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* For very small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .image-text-line-1 {
        font-size: 1.5rem;
    }
    
    .image-text-line-2 {
        font-size: 2.2rem;
    }
    
    .image-text-line-3 {
        font-size: 1.3rem;
    }
    
    .image-text-content {
        padding: 25px 15px;
    }
    
    .hero-seo-tags {
        justify-content: center;
    }
}

/* Optimize background image loading */
@media (max-width: 768px) {
    .hero-bg-image {
        background-attachment: scroll;
        opacity: 0.8;
    }
}

/* Animation for text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-container,
.hero-image-text {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image-text {
    animation-delay: 0.5s;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(,url('images/hero-bg.jpg')) center/cover no-repeat;
    color: var(--white);
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FEATURED COLLECTIONS ========== */
.featured-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.collection-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.store-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
    border: 2px solid var(--primary-gold);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-gold);
    margin-top: 1.5rem;
}

.quality-list {
    margin-top: 1.5rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.quality-item i {
    color: var(--primary-gold);
}

.image-frame {
    border: 5px solid var(--primary-gold);
    border-radius: 10px;
    padding: 15px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    height: 400px;
    background: var(--cream);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ========== COLLECTIONS SECTION ========== */
.collections-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.collections-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-header i {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.collection-detail-card ul {
    list-style: none;
    margin-top: 1rem;
}

.collection-detail-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.collection-detail-card li i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* ========== BRANDS SECTION ========== */
.brands-section {
    padding: 5rem 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.brand-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* ========== TAILORING SECTION ========== */
.tailoring-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--primary-gold);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Personalization Options */
.personalization-section {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.instagram-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.instagram-link:hover {
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}
/* ===== TRENDING COLLECTIONS ===== */
.trending-collections {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4AF37;
}

.section-title p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.trending-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    display: block;
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trending-card:hover .trending-image img {
    transform: scale(1.1);
}

.trending-card:hover .trending-overlay {
    opacity: 1;
}

.trending-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-text {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 12px 25px;
    border: 2px solid #000;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
}

.trending-content {
    padding: 25px;
}

.trending-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.trending-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===== ANIMATION EFFECTS ===== */
.trending-card {
    animation: fadeInUp 0.6s ease-out;
}

.trending-card:nth-child(2) { animation-delay: 0.1s; }
.trending-card:nth-child(3) { animation-delay: 0.2s; }
.trending-card:nth-child(4) { animation-delay: 0.3s; }
.trending-card:nth-child(5) { animation-delay: 0.4s; }
.trending-card:nth-child(6) { animation-delay: 0.5s; }

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

/* Responsive Trending Grid */
@media (max-width: 1200px) {
    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-gold);
}

.contact-card a {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-gold);
}

.map-container, .whatsapp-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.map-btn {
    margin-top: 1rem;
    background: var(--dark-navy) !important;
    color: white !important;
}

.whatsapp-box {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #E8C35D 100%);
    color: white;
}

.whatsapp-btn {
    background: white !important;
    color: var(--primary-gold) !important;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-navy);
    color: #aaa;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.seo-tags {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #777;
    font-size: 0.9rem;
}
/* ===== WHAT'S YOUR VIBE SECTION ===== */
.vibe-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f6f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vibe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.vibe-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    position: relative;
}

.vibe-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: #D4AF37;
}

.vibe-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 30px auto 50px;
    line-height: 1.6;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.vibe-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    animation: floatIn 0.8s ease-out;
}

.vibe-card:nth-child(1) { animation-delay: 0.1s; }
.vibe-card:nth-child(2) { animation-delay: 0.2s; }
.vibe-card:nth-child(3) { animation-delay: 0.3s; }

.vibe-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vibe-image-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.vibe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    border-radius: 20px 20px 0 0;
}

.vibe-card:hover .vibe-image {
    transform: scale(1.08);
}

.vibe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(0, 0, 0, 0.1) 30%,
                rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.vibe-card:hover .vibe-overlay {
    opacity: 1;
}

.vibe-content {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.vibe-card:hover .vibe-content {
    transform: translateY(0);
}

.vibe-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vibe-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 90%;
}

.vibe-badge {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.vibe-footer {
    background: #fff;
    padding: 20px 30px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.vibe-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Store CTA */
.store-cta {
    /*background: #000;*/
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.store-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.store-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.store-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.store-cta .btn-large {
    padding: 16px 35px;
    font-size: 1.1rem;
    background: #D4AF37;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.store-cta .btn-large:hover {
    background: #000;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover Shine Effect */
.vibe-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent);
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.vibe-card:hover::after {
    left: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .vibe-grid {
        gap: 30px;
    }
    
    .vibe-image-container {
        height: 400px;
    }
    
    .vibe-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 992px) {
    .vibe-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .vibe-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        /*margin: 0 auto;*/
    }
    
    .vibe-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .vibe-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .vibe-section {
        padding: 70px 0;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 30px;
    }
    
    .vibe-card:last-child {
        grid-column: 1;
    }
    
    .vibe-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .vibe-subtitle {
        font-size: 1rem;
        margin: 20px auto 40px;
    }
    
    .vibe-image-container {
        height: 350px;
    }
    
    .vibe-content h3 {
        font-size: 1.8rem;
    }
    
    .store-cta {
        padding: 30px 20px;
    }
    
    .store-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vibe-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .vibe-image-container {
        height: 300px;
    }
    
    .vibe-content h3 {
        font-size: 1.5rem;
    }
    
    .vibe-content p {
        font-size: 0.85rem;
    }
    
    .store-cta {
        margin: 20px auto 0;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--dark-navy);
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .collections-grid,
    .collections-detail,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}
/* ===== IMAGE ZOOM MODAL ===== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.modal-content {
    background: #fff;
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-modal:hover {
    background: #D4AF37;
    color: #000;
    transform: rotate(90deg);
    border-color: #D4AF37;
}

.modal-image-container {
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-info {
    padding: 30px;
    background: #fff;
}

.modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 15px;
}

.modal-info p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Update Trending Cards for clickable images */
.trending-image {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.trending-image:hover .view-text {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    transform: scale(1.05);
}

.view-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.view-text i {
    font-size: 1rem;
}

/* ===== RESPONSIVE MODAL ===== */
@media (max-width: 992px) {
    .modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-image-container {
        height: 50vh;
    }
    
    .modal-info h3 {
        font-size: 1.8rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .modal-image-container {
        height: 40vh;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-info h3 {
        font-size: 1.6rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modal-image-container {
        height: 30vh;
    }
    
    .modal-info h3 {
        font-size: 1.4rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
    }
    
    .view-text {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Add zoom effect on modal image hover */
.modal-image-container:hover img {
    transform: scale(1.02);
}

/* Add some animation to the view text */
.trending-overlay {
    animation: pulseOverlay 2s infinite;
}

@keyframes pulseOverlay {
    0% {
        background: rgba(0, 0, 0, 0.6);
    }
    50% {
        background: rgba(0, 0, 0, 0.7);
    }
    100% {
        background: rgba(0, 0, 0, 0.6);
    }
}


/* Zoom animation for modal image */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-image-container img.zoomed {
    animation: zoomIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover effect on trending cards */
.trending-card {
    transition: transform 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
}

/* Enhanced overlay effect */
.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trending-image:hover .trending-overlay {
    opacity: 1;
}

/* Pulse animation for view text */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.trending-image:hover .view-text {
    animation: pulse 1.5s infinite;
}
/* Make trending cards clickable */
.trending-image {
    cursor: pointer;
    position: relative;
}

.trending-image:hover .view-text {
    background: #D4AF37;
    color: #000;
    transform: scale(1.05);
}

.trending-card {
    transition: transform 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
}

/* Modal styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
}

.close-modal:hover {
    background: #D4AF37;
    color: #000;
}

.modal-image-container {
    height: 500px;
    overflow: hidden;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-image-container img.zoomed {
    animation: zoomIn 0.6s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-info {
    padding: 25px;
}

.modal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000;
}

.modal-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-image-container {
        height: 300px;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
/* ========== MOBILE NAVIGATION FIXES ========== */
@media (max-width: 768px) {
    /* Header fixes */
    .header {
        padding: 15px 0;
        position: fixed;
        top: 0;
        width: 100%;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .logo img {
        width: 150px;
        height: auto;
    }
    
    /* Hamburger Menu Fix */
    .nav-toggle {
        display: block !important;
        background: none;
        border: none;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 1001;
        cursor: pointer;
    }
    
    .nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--dark-navy);
        margin: 6px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-link.active {
        color: var(--primary-gold);
        border-bottom: 2px solid var(--primary-gold);
    }
    
    .nav-btn {
        margin-top: 20px;
        padding: 12px 30px !important;
        font-size: 1rem;
        border-radius: 25px;
        background: var(--primary-gold);
        color: white !important;
        border: none;
        width: 80%;
        max-width: 250px;
    }
    
    /* Fix body overflow when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero Section Mobile Fix */
    .hero-section {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title-line-1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-title-line-2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-image-tag {
        margin-top: 20px;
    }
    
    .exclusive-tag {
        padding: 25px 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .exclusive-line {
        font-size: 1.6rem;
    }
    
    .mens-line {
        font-size: 2.2rem;
    }
    
    .collection-line {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    /* About Section Mobile Fix */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin-top: 20px;
    }
    
    .quality-list {
        margin-top: 20px;
    }
    
    .quality-item {
        margin-bottom: 10px;
    }
    
    .image-frame {
        padding: 10px;
        margin-top: 20px;
    }
    
    .store-image {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }
    
    /* What's Your Vibe Mobile Fix */
    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vibe-card:last-child {
        grid-column: 1;
    }
    
    .vibe-image-container {
        height: 280px;
    }
    
    .vibe-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
        padding: 20px;
        align-items: flex-end;
    }
    
    .vibe-content h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .vibe-content p {
        display: none;
    }
    
    .vibe-footer {
        padding: 15px 20px;
    }
    
    .vibe-category {
        font-size: 0.85rem;
    }
    
    /* Trending Collections Mobile Fix */
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trending-image {
        height: 200px;
    }
    
    .trending-content {
        padding: 20px;
    }
    
    .trending-content h3 {
        font-size: 1.3rem;
    }
    
    /* Contact Section Mobile Fix */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    /* Footer Mobile Fix */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    /* Fix for iPhone 15 Pro specific issues */
    @media (max-width: 430px) {
        .container {
            padding: 0 15px;
        }
        
        .hero-title-line-1 {
            font-size: 1.8rem;
        }
        
        .hero-title-line-2 {
            font-size: 1.5rem;
        }
        
        .vibe-title {
            font-size: 1.6rem;
            letter-spacing: 2px;
        }
        
        .section-title h2 {
            font-size: 1.8rem;
        }
        
        .btn {
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        
        /* Ensure no horizontal scroll */
        body {
            max-width: 100vw;
            overflow-x: hidden;
        }
    }
}

/* Additional Mobile Fixes for Text Alignment */
@media (max-width: 768px) {
    /* Center all text on mobile */
    .about-text,
    .collection-detail-card,
    .process-step,
    .option-card {
        text-align: center;
    }
    
    /* Fix image alignment */
    .image-frame,
    .vibe-image-container,
    .trending-image,
    .gallery-item {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Fix list alignment */
    .quality-list {
        text-align: left;
        padding-left: 20px;
    }
    
    /* Fix button alignment */
    .hero-buttons,
    .modal-actions,
    .store-cta .btn {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Fix form alignment */
    .form-group {
        text-align: left;
    }
}

/* Favicon Fallback Styles */
/* Note: Favicon styling is very limited in CSS */

/* If you want to add a custom favicon via CSS (not recommended) */
.link[rel="icon"]::before {
    content: "MDS";
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #D4AF37;
}

/* Alternative: Custom cursor that matches your theme */
body {
    cursor: url('images/custom-cursor.png'), auto;
}

/* For browsers that support color scheme */
@media (prefers-color-scheme: dark) {
    /* Dark mode favicon fallback */
    meta[name="theme-color"] {
        content: "#1a1a1a";
    }
}

/* Fix for Safari/iOS specific issues */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        background-attachment: scroll !important;
    }
    
    .vibe-overlay {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

/* ===============================
   HARD iOS FIXES (FINAL)
   =============================== */

/* --- NAV HAMBURGER FIX --- */
.nav-toggle {
    display: block;
    cursor: pointer;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Remove X icon effect */
.nav-toggle.active span {
    transform: none !important;
    opacity: 1 !important;
}

/* --- MOBILE MENU --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        transition: left 0.3s ease;
        z-index: 10000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
}

body.nav-open {
    overflow: hidden;
}

/* --- REMOVE ALL BLUR EFFECTS ON MOBILE --- */
@media (max-width: 1024px) {
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
    }
}

/* --- FIX VIBE & TRENDING IMAGES --- */
.vibe-image,
.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* --- GALLERY HARD FIX --- */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
}

.gallery-item {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.gallery-item::before {
    content: "";
    display: block;
    padding-top: 130%;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-menu.active {
    display: block;
  }
}
