/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Rose Gold Indian Premium Style */
    --primary-rose-gold: #e8b4b8;
    --secondary-rose: #d4a5a9;
    --accent-gold: #f4d03f;
    --deep-rose: #c1747a;
    --warm-cream: #fdf5e6;
    --light-blush: #f8e8e9;
    --ivory: #ffffff;
    --sage-green: #a8b5a1;
    --text-dark: #2c2c2c;
    --text-medium: #555555;
    --text-light: #777777;
    --white: #ffffff;
    --black: #2c2c2c;
    
    /* Typography - Stylish Fonts */
    --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Crimson Text', 'Georgia', serif;
    --font-script: 'Pacifico', cursive;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(228, 211, 211, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* ===== TYPOGRAPHY ===== */
.section-subtitle {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary-rose-gold);
    text-align: center;
    margin-bottom: var(--space-xs);
    font-weight: 400;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-rose-gold) 50%, transparent 100%);
    margin: 0 auto var(--space-lg);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-rose-gold) 0%, var(--deep-rose) 100%);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.5);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-rose-gold) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-rose) 100%);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid var(--white);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(45, 52, 54, 0.08);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-rose-gold);
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
}

.nav-link:hover {
    color: var(--primary-rose-gold);
}

.nav-link .fas {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.dropdown:hover .fas {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.dropdown-link:hover {
    background: var(--white);
    color: var(--primary-pink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.action-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.action-btn:hover {
    color: var(--primary-rose-gold);
    background: var(--white);
}

.action-btn .count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-rose-gold);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-frame {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-side-img {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-side-img.left {
    border-right: 2px solid var(--primary-rose-gold);
}

.hero-side-img.right {
    border-left: 2px solid var(--primary-rose-gold);
}

.hero-main-img {
    flex: 2;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--light-blush);
}

.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    transition: all var(--transition-smooth);
}

.hero-side-img:hover .side-img {
    filter: brightness(1);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: var(--space-md);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--primary-rose-gold);
    transform: scale(1.2);
}

/* ===== NEW ARRIVALS SECTION ===== */
.new-arrivals {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.section-header {
    margin-bottom: var(--space-xxl);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xxl);
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--white);
    border: 2px solid var(--primary-rose-gold);
    color: var(--primary-rose-gold);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(232, 180, 184, 0.2);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-rose-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 52, 54, 0.1);
    transition: all var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: linear-gradient(135deg, var(--primary-rose-gold) 0%, var(--deep-rose) 100%);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(232, 180, 184, 0.4);
    z-index: 2;
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--deep-rose) 0%, var(--primary-rose-gold) 100%);
}

.product-badge.new {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-rose-gold) 100%);
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--deep-rose) 100%);
}

.product-badge.trending {
    background: linear-gradient(135deg, var(--primary-rose-gold) 0%, var(--accent-gold) 100%);
}

.product-actions {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-smooth);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-icon {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    padding: var(--space-xs);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon:hover {
    background: var(--primary-rose-gold);
    color: var(--white);
}

.product-info {
    padding: var(--space-md);
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.stars {
    color: var(--primary-rose-gold);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: var(--space-xs);
}

.add-to-cart {
    background: var(--primary-rose-gold);
    border: none;
    color: var(--white);
    font-size: 1rem;
    padding: var(--space-xs);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart:hover {
    background: var(--deep-rose);
    transform: scale(1.1);
}

.view-all-container {
    text-align: center;
    margin-top: var(--space-xl);
}

.view-all-btn {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blush) 100%);
    color: var(--primary-rose-gold);
    padding: var(--space-md) var(--space-xxl);
    border: 2px solid var(--primary-rose-gold);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 180, 184, 0.2) 50%, transparent 100%);
    transition: var(--transition-smooth);
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
    background: linear-gradient(135deg, var(--primary-rose-gold) 0%, var(--accent-gold) 100%);
    color: var(--white);
    border-color: var(--accent-gold);
}

/* ===== SHOP BY CATEGORY ===== */
.shop-category {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: var(--space-lg);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.category-count {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== MOST VIEWED ===== */
.most-viewed {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.features-section {
    margin: var(--space-xl) 0;
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--light-blush) 0%, var(--warm-cream) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(232, 180, 184, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    padding: 0 var(--space-lg);
}

.feature-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(232, 180, 184, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-rose-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.most-viewed-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

/* ===== REVIEWS ===== */
.reviews {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.review-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-stars {
    color: var(--primary-rose-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text .section-title,
.about-text .section-subtitle,
.about-text .section-divider {
    text-align: left;
    margin-left: 0;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-rose-gold);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

/* ===== INSTAGRAM ===== */
.instagram {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.instagram-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.instagram-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 180, 184, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: var(--space-xxl) 0 var(--space-lg);
    border-top: 1px solid var(--light-blush);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-text {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-rose-gold);
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-blush);
    color: var(--primary-rose-gold);
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-rose-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--primary-rose-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-link {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-rose-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-medium);
}

.contact-item i {
    color: var(--primary-rose-gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--light-blush);
    padding-top: var(--space-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-bottom-link:hover {
    color: var(--primary-rose-gold);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-blush);
    border-top: 3px solid var(--primary-rose-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-md);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--primary-rose-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.no-scroll { overflow: hidden; }

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.6s ease-out forwards;
}
