:root {
    --bg-color: #F9F8F4;
    --text-color: #1A1A1A;
    --text-light: #555555;
    --accent-gold: #C5A059;
    --accent-blue: #304C63;
    /* Muted Persian Blue */
    --accent-saffron: #D69E45;
    --white: #ffffff;
    --black: #000000;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;


    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --container-width: 1200px;
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}




img,
video {
    display: block;
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utilities */
.section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
    box-shadow: 0 0 15px rgba(26, 26, 26, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--white);
}

.btn-glow {
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    color: var(--white);
    /* White text initially */
    transition: background-color 0.3s ease, padding 0.3s ease, color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    /* Dark text on scroll */
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px;
    /* Bigger logo */
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 50px;
    /* Slightly smaller on scroll */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid currentColor;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--white);
    color: var(--black);
}

.navbar.scrolled .btn-nav {
    border-color: var(--text-color);
}

.navbar.scrolled .btn-nav:hover {
    background-color: var(--text-color);
    color: var(--white);
}

.btn-nav::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: currentColor;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.music-control svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.navbar.scrolled~.music-control,
body.scrolled-mode .music-control {
    /* Optional: change style on scroll if needed, but fixed white/glass looks good usually */
    border-color: var(--text-color);
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    /* Offset for navbar */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s var(--ease-out) forwards 0.5s;
}

/* refined desktop spacing and transition */
.hero-title {
    font-size: 5rem;
    /* Increased size for Cormorant Garamond elegance */
    margin-bottom: 2rem;
    /* Adjusted spacing */
    letter-spacing: 0.02em;
    /* Tighter tracking for this typeface */
    font-variant: small-caps;
    text-transform: lowercase;
    min-height: 1.4em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0.95;
    /* Closer lines if wrapping */
    font-weight: 500;
}

.hero-phrase {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    /* Keep strictly centered, no movement */
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem;
}

.hero-phrase.active {
    opacity: 1;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-phrase.prev {
    opacity: 0;
    transform: translateY(-50%);
    /* No shift */
    z-index: 1;
}

.hero-phrase.next {
    opacity: 0;
    transform: translateY(-50%);
    /* No shift */
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    /* Increased max-width significantly to separate title and prevent orphan 'culture' */
    max-width: 800px;
    margin: 3rem auto 3rem;
    /* Increased top margin for more space from title */
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

/* Ensure single line on large screens if possible */
@media (min-width: 900px) {
    .hero-subtitle {
        max-width: 900px;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: var(--white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    51% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Products Section */
.products-section {
    background-color: var(--bg-color);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header .divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    cursor: pointer;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    color: var(--text-color);
}

.product-card:hover .overlay-text {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
}

.philosophy-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.animated-lines {
    width: 2px;
    height: 80px;
    background: #e0e0e0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.line-anim {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transform: translateY(-100%);
    animation: dropLine 2s infinite ease-in-out;
}

@keyframes dropLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Split Section */
.split-section {
    display: flex;
    height: 80vh;
    min-height: 600px;
    position: relative;
}

.split-panel {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: flex 0.5s var(--ease-out);
}

.split-panel:hover {
    flex: 1.2;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.6s var(--ease-out), filter 0.6s ease;
    background-size: cover;
    background-position: center;
}

.left-panel .panel-bg {
    background-color: #f4f1ea;
    /* Fallback */
    /* Add subtle texture or image here */
}

.right-panel .panel-bg {
    background-color: #e8e6e1;
    /* Fallback */
}

/* Interactions */
.left-panel:hover .panel-bg {
    filter: sepia(10%);
    /* Warm */
    transform: scale(1.03);
}

.right-panel:hover .panel-bg {
    filter: brightness(90%);
    /* Darkens */
    transform: scale(1.03);
}

.panel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.panel-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.link-arrow span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-arrow:hover span {
    transform: translateX(5px);
}

.split-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 3;
}

/* How It Works */
.how-it-works {
    background-color: var(--white);
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 2rem;
    flex-wrap: wrap;
    /* responsive */
    gap: 2rem;
}

.step-line {
    position: absolute;
    top: 2rem;
    left: 50px;
    right: 50px;
    height: 1px;
    background: #eee;
    z-index: 0;
    display: none;
    /* Hide on mobile mostly, show on desktop via media query */
}

@media (min-width: 768px) {
    .step-line {
        display: block;
    }
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);
    /* cover line */
    padding: 1rem;
    min-width: 200px;
}



.step-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out);
}

.step-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* mix-blend-mode removed for transparent PNGs */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover .step-icon-wrapper {
    transform: translateY(-10px);
}


.step:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    /* No drop shadow to avoid square borders */
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: color 0.3s ease;
}

.step:hover .step-number {
    color: rgba(197, 160, 89, 0.15);
    /* accent gold transparent */
}

.step h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.step p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #444;
}

.delivery-note {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: var(--accent-saffron);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Trust Section */
.trust-section {
    background-color: #f9f9f9;
}

.grid-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insta-link {
    display: inline-block;
    margin-top: 1rem;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 1px solid currentColor;
}

.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.insta-item {
    aspect-ratio: 1;
    background-color: #ddd;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
    cursor: pointer;
}

.insta-item:hover {
    filter: grayscale(0%);
}

/* Candles Highlight */
.candles-section {
    padding: 10rem 0;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.candle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add a nice candle image or gradient */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/candle_feature.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.candle-content {
    position: relative;
    z-index: 1;
}

.candle-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(214, 158, 69, 0.3);
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1rem;
    /* row gap 3rem, col gap 1rem */
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-list {
        grid-template-columns: 1fr;
    }
}

.why-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-list .icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    /* No hover transition needed */
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background-color: var(--bg-color);
    transition: background-color 0.8s ease;
}

.cta-section:hover {
    background-color: #F0EEE6;
}

.big-headline {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 60px;
    opacity: 0.8;
}

.footer-col h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #888;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    display: inline-flex !important;
    margin-bottom: 0 !important;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .split-section {
        flex-direction: column;
        height: auto;
    }

    .split-panel {
        height: 400px;
    }

    .grid-trust {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: var(--black) !important;
        font-size: 1.2rem;
        margin: 1.5rem 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
        /* Ensure button is above menu */
    }

    /* Adjust button color when menu is open */
    .mobile-menu-btn.active span {
        background-color: var(--black);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
.hidden-elem {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}



.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Grayscale to Color Interaction */
.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.grayscale-hover:hover {
    filter: grayscale(0%);
}

/* Business Split Images */
.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.split-panel:hover .panel-bg {
    filter: grayscale(0%);
}

.bg-personal-split {
    background-image: url('images/personal_gift.png');
}

.bg-business-split {
    background-image: url('images/business_gift.png');
}

/* Panel Content Text - Fix Readability */
.panel-content {
    position: relative;
    z-index: 5;
    /* Ensure above bg */
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.panel-content h3,
.panel-content p {
    color: var(--white) !important;
}

/* Navbar Links - Fix Readability on Transparent Header */
.navbar:not(.scrolled) .nav-links a {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Gallery Images */
.insta-item {
    background-color: transparent;
    /* Remove placeholder */
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    cursor: pointer;
}

.insta-item:hover {
    filter: grayscale(0%);
}

/* Gallery Backgrounds */
.gallery-1 {
    background-image: url('images2/about_gallery_1.jpg');
}

.gallery-2 {
    background-image: url('images2/about_gallery_2.jpg');
}

.gallery-3 {
    background-image: url('images2/about_gallery_3.jpg');
}

.gallery-4 {
    background-image: url('images2/about_gallery_4.jpg');
}

/* Page Header (Subpages) */
.page-header {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

/* Specific Backgrounds */
.bg-products {
    background-image: url('images2/products_bg.jpg');
}

.bg-order {
    background-image: url('images2/order_hero_bg.jpg');
}

.bg-about {
    background-image: url('images2/about_bg.jpg');
}

.bg-contact {
    background-image: url('images2/contact_bg.jpg');
}

/* Tint Overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Tint */
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Interactive Image Hover Effects (General) */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* Order Form Styles */
.order-form-section {
    padding: 6rem 0;
    background-color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Category Selection Styles */
.category-group {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #eee;
}

.category-label {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-align: center;
}

.category-list {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.category-item {
    display: table-row;
}

.category-item>div {
    display: table-cell;
    vertical-align: middle;
    background: #fff;
    padding: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.category-item>div:first-child {
    border-left: 1px solid #eee;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.category-item>div:last-child {
    border-right: 1px solid #eee;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: right;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper label {
    cursor: pointer;
}

.category-item input[type="checkbox"] {
    accent-color: var(--accent-gold);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.quantity-input {
    width: 70px;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
    border-radius: 4px;
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Order Type Toggle */
.order-type-selector {
    display: inline-flex;
    background: #f1f1f1;
    border-radius: 30px;
    padding: 0.25rem;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.order-type-selector input[type="radio"] {
    display: none;
}

.order-type-selector label {
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #666;
    font-weight: 500;
}

.order-type-selector input[type="radio"]:checked+label {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-item-others .other-input {
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-item-others .other-input:disabled {
    background: #eee;
    cursor: not-allowed;
}