/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--secondary-color) 50%, var(--accent-red) 100%);
    color: var(--white);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-banner.hidden {
    display: none;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.promo-icon {
    font-size: 1.2rem;
}

.promo-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 1rem;
    transition: var(--transition);
}

.promo-link:hover {
    opacity: 0.8;
}

.promo-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition);
    line-height: 1;
}

.promo-close:hover {
    opacity: 0.7;
}

:root {
    /* Primary Colors - Rich Deep Tones */
    --primary-color: #2c1810;
    --primary-dark: #1a0f0a;
    --primary-light: #3d2818;
    
    /* Secondary Colors - Warm Golds & Oranges */
    --secondary-color: #d97706;
    --secondary-light: #f59e0b;
    --secondary-dark: #b45309;
    --gold-accent: #fbbf24;
    
    /* Accent Colors - Vibrant Indian Palette */
    --accent-red: #dc2626;
    --accent-orange: #ea580c;
    --accent-yellow: #fbbf24;
    --accent-green: #16a34a;
    --accent-blue: #2563eb;
    --accent-purple: #9333ea;
    
    /* Background Colors */
    --bg-maroon: #7c2d12;
    --bg-maroon-dark: #5a1a1a;
    --bg-cream: #fef7ed;
    --bg-warm: #fff7ed;
    --bg-light: #fafafa;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #666;
    --text-lighter: #999;
    --white: #ffffff;
    
    /* UI Colors */
    --border-color: #e5e5e5;
    --success-color: #16a34a;
    --error-color: #dc2626;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-colored: 0 8px 32px rgba(217, 119, 6, 0.2);
}

html {
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    text-align: left;
    -moz-font-feature-settings: "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 237, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.15rem 0;
    transition: var(--transition);
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(217, 119, 6, 0.15);
    overflow: visible;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.nav-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 45px;
    overflow: visible;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-cream);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-link-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link-icon:hover {
    color: var(--secondary-color);
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.cart-btn:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: 5px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: visible;
}

.logo-image {
    height: 130px;
    width: auto;
    max-width: 750px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
    transform: scale(1.3);
}

.logo:hover .logo-image {
    transform: scale(1.03);
    opacity: 0.9;
}

.logo-by {
    display: none;
    margin-top: 2px;
    font-family: 'Poppins', sans-serif;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.4rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section - Artist Focused */
.hero {
    min-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
    padding: 50px 5% 40px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-warm) 100%);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 50%, var(--secondary-color) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    justify-items: start;
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: auto;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

/* Firefox-specific: Fix grid alignment to prevent right shift */
@-moz-document url-prefix() {
    .hero-content-wrapper {
        justify-items: start !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-text-section {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-artist-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.hero-artist-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.hero-artist-photo {
    position: relative;
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 0 12px var(--white), 0 0 0 16px var(--gold-accent);
    background: var(--white);
    padding: 12px;
    animation: fadeInLeft 1s ease-out;
}

.artist-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: var(--transition);
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.artist-main-photo[loading="eager"] {
    animation: none;
    background: transparent;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-artist-photo:hover .artist-main-photo {
    transform: scale(1.02);
}

.photo-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    border-radius: 24px;
    opacity: 0.1;
    z-index: -1;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

.hero-text-section {
    padding: 2rem 0 1rem 0;
    animation: fadeInRight 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
    width: fit-content;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-slogan-line1 {
    display: block;
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease-out;
}

.hero-slogan-line2 {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-subtitle-text strong {
    color: var(--secondary-color);
}

.hero-description-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.hero-btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.hero-stat .stat-number {
    font-size: 2rem;
}

.hero-stat .stat-text {
    font-size: 0.85rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

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

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 1rem;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    transition: var(--transition);
    z-index: -1;
}

.cta-button.secondary:hover {
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

.cta-button.secondary:hover::before {
    left: 0;
}

/* Featured Section */
.featured-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-cream) 100%);
    position: relative;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 50%, var(--secondary-color) 100%);
}

.section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    justify-items: stretch;
    -moz-justify-items: stretch;
}

/* Themes Section */
.themes-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--white) 50%, var(--bg-cream) 100%);
    position: relative;
}

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

.theme-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.1), transparent);
    transition: var(--transition);
}

.theme-card:hover::before {
    left: 100%;
}

.theme-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.theme-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.2));
    transition: var(--transition);
}

.theme-card:hover .theme-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(217, 119, 6, 0.4));
}

.theme-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Budget Section */
.budget-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 50%, var(--white) 100%);
    position: relative;
}

.budget-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 50%, var(--secondary-color) 100%);
}

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

.budget-text {
    max-width: 600px;
}

.budget-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.budget-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.2));
}

.budget-images {
    position: relative;
}

.budget-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.budget-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.budget-image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.budget-image-grid img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.budget-image-grid img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.budget-image-grid img:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Vision Section */
.vision-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--bg-maroon-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-section .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.learn-more-btn:hover {
    gap: 1rem;
    color: var(--white);
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--gold-accent);
    transform: translateX(5px);
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.section-title.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 700px;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.section-title.center::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--secondary-color) 0%, var(--gold-accent) 50%, var(--secondary-color) 100%, transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

/* Products Section */
.products-section {
    padding: 60px 5%;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
    position: relative;
}

.category-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-accent));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
}

.category-card:hover .category-icon::after {
    opacity: 0.3;
    inset: -5px;
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Products/Shop Section */
.products-shop-section {
    padding: 120px 5% 100px;
    background: var(--light-bg);
    min-height: 100vh;
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-sm);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.filters-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.clear-filters {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
}

.clear-filters:hover {
    color: var(--secondary-color);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.filter-checkbox:hover {
    color: var(--secondary-color);
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.filter-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-input-wrapper {
    position: relative;
    flex: 1;
}

.price-input-wrapper .currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-weight: 500;
}

.price-input-wrapper input {
    width: 100%;
    padding: 10px 12px 10px 30px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.price-input-wrapper input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.price-separator {
    color: var(--text-light);
    font-weight: 500;
}

.price-range-slider {
    width: 100%;
}

.price-range-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: none;
}

/* Size Buttons */
.size-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-btn {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    text-align: left;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
}

/* Products Main Area */
.products-main {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.products-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-sort label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.products-sort select {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--white);
    color: var(--text-dark);
}

.products-sort select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 3px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(217, 119, 6, 0.1);
}

.product-card:hover .product-image-wrapper::before {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: inset 0 0 30px rgba(217, 119, 6, 0.2), 0 0 20px rgba(251, 191, 36, 0.3);
}

.product-image {
    width: 90%;
    height: 90%;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition);
    background: linear-gradient(90deg, #2a2a2a 25%, #1a1a1a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    opacity: 0;
    animation-fill-mode: forwards;
    display: block;
}

.product-image-wrapper picture img,
.product-image-wrapper img {
    width: 90%;
    height: 90%;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
}

.product-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.product-image.loaded {
    opacity: 1;
    animation: none;
    background: transparent;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.product-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 237, 0.95) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    border: 2px solid rgba(217, 119, 6, 0.2);
    color: var(--text-dark);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    border-color: var(--gold-accent);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
}

.product-favorite.active {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: var(--white);
    border-color: var(--gold-accent);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-status {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--light-bg);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-status.made-to-order {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    color: #856404;
    border: 1px solid var(--gold-accent);
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.3);
}

.product-status.made-to-order:hover {
    box-shadow: 0 5px 16px rgba(251, 191, 36, 0.4);
}

.product-status.ready-to-ship {
    background: linear-gradient(135deg, #d1f2eb 0%, #a3e4d7 100%);
    color: #0d5d47;
    border: 1px solid #2ecc71;
    box-shadow: 0 3px 12px rgba(46, 204, 113, 0.3);
}

.product-status.ready-to-ship:hover {
    box-shadow: 0 5px 16px rgba(46, 204, 113, 0.4);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-artist {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-artist i {
    color: #4285f4;
    font-size: 0.9rem;
}

.product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.enquire-now-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.enquire-now-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.enquire-now-btn i {
    font-size: 1.2rem;
}

.add-to-cart-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
}

.products-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section (keeping for backward compatibility) */
.gallery-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 14px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.load-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Meet the Artist Section */
.artist-hero-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 50%, var(--secondary-color) 100%);
}

.artist-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-photo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-photo-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 8px var(--white), 0 0 0 12px var(--gold-accent);
    background: var(--white);
    padding: 8px;
    z-index: 2;
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: var(--transition);
}

.artist-photo-frame:hover .artist-photo {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.photo-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
}

.photo-badge i {
    font-size: 1.1rem;
}

.artist-photo-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.artist-intro {
    padding: 2rem 0;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.artist-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.artist-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.artist-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.artist-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.credential-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.credential-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.credential-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-cream) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 4px var(--white), 0 0 0 8px var(--gold-accent);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 0 4px var(--white), 0 0 0 8px var(--secondary-color);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    opacity: 0;
}

.about-image-wrapper img.loaded {
    opacity: 1;
    animation: none;
    background: transparent;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.image-caption i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: var(--white);
}

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

.contact-map-wrapper {
    width: 100%;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--light-bg);
    border: 3px solid rgba(217, 119, 6, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Placeholder Styles - Fast Loading */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 16px;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #f0ede8 0%, #f8f6f3 100%);
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.map-placeholder-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.map-placeholder-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.map-placeholder-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.map-load-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    cursor: pointer;
}

.map-load-button i {
    font-size: 1.3rem;
}

.map-placeholder:hover .map-load-button {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
}

.map-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.map-link-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.map-container.loaded .map-placeholder {
    display: none;
}

.map-container.loaded iframe {
    display: block;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 1.5rem 0 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-button {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    padding: 60px 5% 30px;
    background: var(--primary-color);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.footer-by {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.cart-modal-content {
    max-width: 700px;
}

.product-modal-content {
    max-width: 95%;
    width: 1000px;
    padding: 0;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #2a2a2a;
    padding: 10px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.cart-item-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: auto;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #dc3545;
}

.cart-footer {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total {
    font-size: 1.3rem;
    text-align: right;
    color: var(--primary-color);
}

.checkout-btn {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.checkout-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.product-detail-image-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 30%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    position: relative;
    min-height: 400px;
    max-height: 90vh;
    overflow: hidden;
}

.product-detail-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(251, 191, 36, 0.1);
}

.product-detail-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-detail-image-wrapper:hover .product-detail-image {
    transform: scale(1.02);
}

.product-detail-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    overflow-y: auto;
    max-height: 90vh;
    position: relative;
}

.product-detail-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-detail-description {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-item:hover {
    padding-left: 0.5rem;
    background: linear-gradient(to right, rgba(217, 119, 6, 0.05), transparent);
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 0.5rem;
}

.detail-item:last-of-type {
    border-bottom: none;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 0.25rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.detail-item div {
    flex: 1;
}

.detail-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item span {
    color: var(--text-medium);
    font-size: 1.05rem;
    font-weight: 500;
}

.detail-description-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.detail-description-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.detail-description-text p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-detail-actions button {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-detail-actions button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-detail-actions button:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    flex: 1;
    position: relative;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Wholesale Modal - Premium Design with Overlapping Elements */
.wholesale-modal-wrapper {
    position: relative;
    max-width: 700px;
    padding: 0;
    overflow: visible;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(139, 69, 19, 0.1),
                0 0 100px rgba(217, 119, 6, 0.15);
    animation: wholesaleModalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes wholesaleModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

.wholesale-decorative-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.wholesale-decorative-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.wholesale-decorative-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, transparent 50%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.wholesale-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    background-size: 200% 200%;
    z-index: 2;
    pointer-events: none;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.wholesale-content-inner {
    position: relative;
    z-index: 10;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    max-height: 90vh;
    border-radius: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(217, 119, 6, 0.1);
}

.wholesale-content-inner::-webkit-scrollbar {
    width: 8px;
}

.wholesale-content-inner::-webkit-scrollbar-track {
    background: rgba(217, 119, 6, 0.1);
    border-radius: 10px;
}

.wholesale-content-inner::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.wholesale-content-inner::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.wholesale-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.wholesale-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.wholesale-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 3;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
}

.wholesale-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.wholesale-header .modal-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.wholesale-form {
    position: relative;
    z-index: 10;
}

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

.wholesale-form .form-group input,
.wholesale-form .form-group textarea,
.wholesale-form .form-group select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 69, 19, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.wholesale-form .form-group input:focus,
.wholesale-form .form-group textarea:focus,
.wholesale-form .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.2),
                0 0 0 4px rgba(217, 119, 6, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.wholesale-form .form-group input::placeholder,
.wholesale-form .form-group textarea::placeholder {
    color: var(--text-lighter);
    font-weight: 400;
}

.wholesale-form .form-row {
    gap: 1.5rem;
    margin-bottom: 0;
}

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

.form-submit-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.wholesale-submit-btn {
    position: relative;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d97706 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    justify-content: center;
    z-index: 1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.wholesale-submit-btn::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: left 0.5s;
    z-index: 2;
}

.wholesale-submit-btn:hover::before {
    left: 100%;
}

.wholesale-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background-position: 100% 50%;
}

.wholesale-submit-btn:active {
    transform: translateY(-2px) scale(1);
}

.wholesale-submit-btn span {
    position: relative;
    z-index: 3;
}

.wholesale-submit-btn i {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.wholesale-submit-btn:hover i {
    transform: translateX(4px);
}

.button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.wholesale-submit-btn:hover .button-shine {
    opacity: 1;
    animation: shineRotate 1s ease-in-out;
}

@keyframes shineRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.wholesale-modal-wrapper .close-modal {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.wholesale-modal-wrapper .close-modal:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

/* Enquiry Modal - Premium Design with Overlapping Elements */
.enquiry-modal-wrapper {
    position: relative;
    max-width: 650px;
    padding: 0;
    overflow: visible;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(139, 69, 19, 0.1),
                0 0 100px rgba(217, 119, 6, 0.15);
    animation: enquiryModalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes enquiryModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

.enquiry-decorative-bg {
    position: absolute;
    top: -40%;
    left: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatEnquiry 7s ease-in-out infinite;
}

.enquiry-decorative-bg::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatEnquiry 9s ease-in-out infinite reverse;
}

.enquiry-decorative-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, transparent 50%);
    border-radius: 50%;
    animation: floatEnquiry 11s ease-in-out infinite;
}

@keyframes floatEnquiry {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-15px, 15px) scale(1.05);
    }
}

.enquiry-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(217, 119, 6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    background-size: 200% 200%;
    z-index: 2;
    pointer-events: none;
    animation: patternMoveEnquiry 25s ease-in-out infinite;
}

@keyframes patternMoveEnquiry {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.enquiry-content-inner {
    position: relative;
    z-index: 10;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    max-height: 90vh;
    border-radius: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(217, 119, 6, 0.1);
}

.enquiry-content-inner::-webkit-scrollbar {
    width: 8px;
}

.enquiry-content-inner::-webkit-scrollbar-track {
    background: rgba(217, 119, 6, 0.1);
    border-radius: 10px;
}

.enquiry-content-inner::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.enquiry-content-inner::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.enquiry-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.enquiry-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.enquiry-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 3;
    animation: iconPulseEnquiry 2.5s ease-in-out infinite;
}

@keyframes iconPulseEnquiry {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.enquiry-icon-wrapper .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: glowPulseEnquiry 2.5s ease-in-out infinite;
}

@keyframes glowPulseEnquiry {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
}

.enquiry-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.enquiry-header .modal-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.enquiry-form {
    position: relative;
    z-index: 10;
}

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

.enquiry-form .form-group input,
.enquiry-form .form-group textarea,
.enquiry-form .form-group select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 69, 19, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.enquiry-form .form-group input:focus,
.enquiry-form .form-group textarea:focus,
.enquiry-form .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.2),
                0 0 0 4px rgba(217, 119, 6, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.enquiry-form .form-group input::placeholder,
.enquiry-form .form-group textarea::placeholder {
    color: var(--text-lighter);
    font-weight: 400;
}

.enquiry-submit-btn {
    position: relative;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d97706 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    justify-content: center;
    z-index: 1;
    animation: gradientShiftEnquiry 3s ease infinite;
}

@keyframes gradientShiftEnquiry {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.enquiry-submit-btn::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: left 0.5s;
    z-index: 2;
}

.enquiry-submit-btn:hover::before {
    left: 100%;
}

.enquiry-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background-position: 100% 50%;
}

.enquiry-submit-btn:active {
    transform: translateY(-2px) scale(1);
}

.enquiry-submit-btn span {
    position: relative;
    z-index: 3;
}

.enquiry-submit-btn i {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.enquiry-submit-btn:hover i {
    transform: translateX(4px);
}

.enquiry-submit-btn .button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.enquiry-submit-btn:hover .button-shine {
    opacity: 1;
    animation: shineRotateEnquiry 1s ease-in-out;
}

@keyframes shineRotateEnquiry {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.enquiry-modal-wrapper .close-modal {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.enquiry-modal-wrapper .close-modal:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.close-modal:hover {
    color: var(--white);
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        margin-top: 60px;
        padding: 40px 5% 30px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-artist-photo {
        max-width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-text-section {
        padding: 1rem 0;
    }
    
    .hero-main-title {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }
    
    .hero-subtitle-text {
        font-size: 1.1rem;
    }
    
    .hero-description-text {
        font-size: 0.95rem;
    }

    .budget-content {
        grid-template-columns: 1fr;
    }

    .artist-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .artist-photo-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-map-wrapper {
        width: 100%;
    }
    
    .map-title {
        font-size: 1.75rem;
    }
    
    .map-container {
        height: 400px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .products-section {
        padding: 50px 4%;
    }

    .shop-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
        max-height: none;
    }
    
    .product-modal-content {
        max-width: 95%;
        width: 100%;
        max-height: 95vh;
    }
    
    .product-detail-image-wrapper {
        min-height: 300px;
        max-height: 50vh;
        padding: 1.5rem;
    }
    
    .product-detail-info {
        padding: 1.5rem;
        max-height: none;
    }
    
    .product-detail-info h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* App-like tablet styles */
    html {
        scroll-behavior: smooth;
    }
    
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 0.15rem 0;
    }
    
    .logo-image {
        height: 60px;
        max-width: 400px;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-container {
        justify-content: center;
        position: relative;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .hamburger {
        position: absolute;
        right: 5%;
        z-index: 20;
    }
    
    .nav-right {
        margin-left: auto;
        position: relative;
        z-index: 20;
    }

    .promo-banner {
        font-size: 0.8rem;
        padding: 10px 4%;
    }

    .promo-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .promo-link {
        margin-left: 0;
    }

    .search-container {
        display: none;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1rem;
    }

    .hero-artwork {
        height: 300px;
    }

    .hero-artwork:nth-child(n) {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .budget-image-grid {
        grid-template-columns: 1fr;
    }

    .budget-image-grid img:nth-child(n) {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 250px;
    }

    .artist-photo-frame {
        max-width: 100%;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 4px var(--white), 0 0 0 8px var(--gold-accent);
    }

    .artist-name {
        font-size: 2rem;
    }

    .artist-title {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    /* Hide email and wholesale icons on tablet and mobile */
    #enquiryBtn,
    #wholesaleBtn {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        border-top: 2px solid var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(217, 119, 6, 0.1);
        color: var(--secondary-color);
        padding-left: 2rem;
    }
    
    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hero {
        margin-top: 60px;
        padding: 40px 5% 30px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-content-wrapper {
        gap: 2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .about-section {
        padding: 60px 4%;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-image-wrapper img {
        max-height: 400px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .gallery-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    /* Wholesale Modal Tablet Responsive */
    .wholesale-modal-wrapper {
        max-width: 90%;
        margin: 1rem;
    }
    
    .wholesale-content-inner {
        padding: 2.5rem 2rem;
    }
    
    .wholesale-header h2 {
        font-size: 2rem;
    }
    
    .wholesale-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .wholesale-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    /* Enquiry Modal Tablet Responsive */
    .enquiry-modal-wrapper {
        max-width: 90%;
        margin: 1rem;
    }
    
    .enquiry-content-inner {
        padding: 2.5rem 2rem;
    }
    
    .enquiry-header h2 {
        font-size: 2rem;
    }
    
    .enquiry-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .enquiry-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    .enquiry-decorative-bg {
        width: 450px;
        height: 450px;
        top: -30%;
        left: -20%;
    }
    
    .enquiry-decorative-bg::before {
        width: 300px;
        height: 300px;
    }
    
    .enquiry-decorative-bg::after {
        width: 350px;
        height: 350px;
    }
    
    .product-modal-content {
        max-width: 100%;
        width: 100%;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .product-detail-image-wrapper {
        min-height: 250px;
        max-height: 40vh;
        padding: 1rem;
    }
    
    .product-detail-info {
        padding: 1.5rem;
    }
    
    .product-detail-info h2 {
        font-size: 1.3rem;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .product-detail-actions button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

.cart-text {
    display: none;
}

.nav-link-icon {
    display: none;
}

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* App-like mobile styles */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .container {
        padding: 0 4%;
    }

    section {
        padding: 40px 4% !important;
    }
    
    /* Navigation - App-like */
    .navbar {
        padding: 0.5rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        z-index: 1000;
        background: var(--white);
        border-bottom: 2px solid var(--secondary-color);
    }
    
    .nav-container {
        padding: 0 4%;
        gap: 0.5rem;
        min-height: 50px;
        justify-content: center;
        position: relative;
    }
    
    .logo {
        font-size: 1.1rem;
        flex-shrink: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .logo-image {
        height: 50px;
        max-width: 300px;
        width: auto;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
        margin-left: auto;
        position: relative;
        z-index: 20;
    }
    
    .nav-icons {
        gap: 0.5rem;
    }
    
    .cart-btn, .icon-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0;
        font-size: 1rem;
    }
    
    /* Hide email and wholesale icons on mobile */
    #enquiryBtn,
    #wholesaleBtn {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
        flex-shrink: 0;
        position: absolute;
        right: 4%;
        z-index: 20;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 0;
        z-index: 999;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
        border-top: 2px solid var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(217, 119, 6, 0.1);
        color: var(--secondary-color);
        padding-left: 2rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 30px 4% 40px;
        min-height: auto;
        height: auto;
        margin-top: 50px;
        overflow: visible;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        height: auto;
        align-items: flex-start;
    }
    
    .hero-artist-photo {
        max-width: 100%;
        max-width: 300px;
        max-height: 50vh;
        margin: 0 auto 1.5rem;
        aspect-ratio: 3/4;
    }
    
    .hero-text-section {
        padding: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 0.5rem;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .hero-description-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-text {
        font-size: 0.95rem;
    }
    
    .hero-description-text {
        font-size: 0.9rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid var(--border-color);
        width: 100%;
    }
    
    .hero-stat {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .stat-text {
        font-size: 0.65rem;
        margin-top: 0.25rem;
        line-height: 1.3;
    }
    
    /* Fix body spacing */
    body {
        padding-top: 0;
    }
    
    section {
        padding: 40px 4% !important;
    }
    
    .featured-section,
    .products-section {
        padding: 40px 4% !important;
    }
    
    /* Fix empty space issues */
    .hero-artist-section {
        margin-bottom: 1.5rem;
        padding: 0;
        width: 100%;
    }
    
    .hero-content-wrapper {
        align-items: flex-start;
        padding: 0;
        min-height: auto;
    }
    
    /* Better spacing for mobile */
    .hero-artist-photo {
        margin-bottom: 1.5rem;
    }
    
    /* Ensure all hero content is visible */
    .hero-text-section > * {
        margin-bottom: 0.75rem;
    }
    
    .hero-text-section > *:last-child {
        margin-bottom: 0;
    }
    
    /* Better image sizing */
    .artist-main-photo {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }
    
    /* Better spacing for featured grid */
    .featured-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    /* Improve section spacing */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        margin-bottom: 0;
    }
    
    /* Fix artist hero section spacing */
    .artist-hero-section {
        padding: 60px 4% 40px;
        margin-top: 50px;
    }
    
    .artist-hero-content {
        gap: 2rem;
    }
    
    /* About section spacing */
    .about-section {
        padding: 50px 4% !important;
    }
    
    /* Contact section spacing */
    .contact-section {
        padding: 50px 4% !important;
    }
    
    /* Footer spacing */
    .footer {
        padding: 40px 4% 20px;
        margin-top: 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Featured Grid - App-like cards */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
    }
    
    .product-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .theme-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact Section - App-like */
    .contact-section {
        padding: 40px 4% !important;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-map-wrapper {
        width: 100%;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 350px;
        border-radius: 16px;
    }
    
    /* Modal - App-like */
    .modal.active {
        padding: 1rem;
        align-items: flex-end;
    }
    
    /* Wholesale Modal Responsive */
    .wholesale-modal-wrapper {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }
    
    .wholesale-content-inner {
        padding: 2rem 1.5rem;
    }
    
    .wholesale-header h2 {
        font-size: 1.8rem;
    }
    
    .wholesale-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .wholesale-icon-wrapper i {
        font-size: 2rem;
    }
    
    .wholesale-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wholesale-form .form-group input,
    .wholesale-form .form-group textarea,
    .wholesale-form .form-group select {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .wholesale-submit-btn {
        width: 100%;
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .wholesale-decorative-bg {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
    }
    
    .wholesale-decorative-bg::before {
        width: 300px;
        height: 300px;
    }
    
    .wholesale-decorative-bg::after {
        width: 350px;
        height: 350px;
    }
    
    /* Enquiry Modal Mobile Responsive */
    .enquiry-modal-wrapper {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }
    
    .enquiry-content-inner {
        padding: 2rem 1.5rem;
    }
    
    .enquiry-header h2 {
        font-size: 1.8rem;
    }
    
    .enquiry-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .enquiry-icon-wrapper i {
        font-size: 2rem;
    }
    
    .enquiry-form .form-group input,
    .enquiry-form .form-group textarea,
    .enquiry-form .form-group select {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .enquiry-submit-btn {
        width: 100%;
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .enquiry-decorative-bg {
        width: 350px;
        height: 350px;
        top: -25%;
        left: -25%;
    }
    
    .enquiry-decorative-bg::before {
        width: 250px;
        height: 250px;
    }
    
    .enquiry-decorative-bg::after {
        width: 300px;
        height: 300px;
    }
    
    .product-modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }
    
    .product-detail {
        max-height: 95vh;
    }
    
    .product-detail-image-wrapper {
        min-height: 250px;
        max-height: 50vh;
        padding: 1.5rem;
    }
    
    .product-detail-info {
        padding: 1.5rem;
    }
    
    .product-detail-info h2 {
        font-size: 1.25rem;
    }
    
    .product-detail-actions {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-detail-actions button {
        padding: 16px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 4% 20px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    /* Touch-friendly improvements */
    button, a, .product-card, .category-card, .theme-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Smooth scrolling */
    .featured-section, .products-section, .themes-section {
        scroll-margin-top: 80px;
    }
    
    /* Better spacing */
    .about-section, .vision-section {
        padding: 40px 4% !important;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}
