/* Brand Colors - Light Mode Only */
:root {
    --deep-olive: #464C3C;
    --muted-moss: #757D70;
    --soft-stone: #D0CBC1;
    --warm-off-white: #E3E1DE;
    --taupe-sand: #AEA385;

    /* Gradient color mixes for cinematic effect */
    --gradient-dark: #2a2e24;
    --gradient-light: #f5f3f0;
    --gradient-accent: #5a624d;

    /* Light mode colors */
    --bg-primary: #E3E1DE;
    --bg-secondary: #D0CBC1;
    --text-primary: #464C3C;
    --text-secondary: #757D70;
    --card-bg: #E3E1DE;
    --header-bg: #464C3C;
    --footer-bg: #464C3C;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--deep-olive);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Center items vertically and reduce unnecessary gaps */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    padding: 0 2rem;
}

/* Logo area */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Logo Image */
.logo-image {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Adjust text placement */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
    transform: translateY(3px);
    /* aligns text visually with icon */
}

/* Main brand name */
.logo-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--warm-off-white);
    margin: 0;
    letter-spacing: 1px;
}

/* Subtext */
.logo-text p {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    margin: 0;
    color: var(--soft-stone);
    letter-spacing: 3px;
}

/* Navigation */
.nav {
    display: flex;
    gap: 2.3rem;
    align-items: center;
}

/* Make nav feel subtle premium */
.nav a {
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--warm-off-white);
    text-decoration: none;
    transition: 0.3s ease;
}

.nav a:hover {
    color: white;
    opacity: 0.9;
}


.nav-link {
    color: var(--warm-off-white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--taupe-sand);
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--taupe-sand);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Added backimg styling with cinematic lighting effects */
.hero-backimg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transform: translateZ(0);
    /* Added subtle animation for depth */
    animation: cinematicFloat 8s ease-in-out infinite;
    /* Reduced the inset shadows to make image clearer */
    box-shadow:
        inset 0 0 50px rgba(255, 255, 255, 0.1),
        inset 0 0 100px rgba(255, 255, 255, 0.05);
    /* Slightly increased brightness for clarity */
    filter: brightness(1.15);
}

/* Added styling for text at top of image */
.hero-text-top {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.hero-text-top .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-olive);
    margin-bottom: 1rem;
    text-shadow: none;
    transform: translateZ(30px);
}

.hero-text-top .hero-subtitle {
    font-family: 'Lato', sans-serif;
    /* Explicitly set Lato */
    font-size: 1.3rem;
    /* Changed to olive green */
    color: var(--deep-olive);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    /* Removed text-shadow for cleaner look as requested */
    text-shadow: none;
    transform: translateZ(25px);
}

/* Overlay with enhanced gradient mixing */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Made overlay much lighter and more transparent to reduce cloudiness */
    background: transparent;
    /* Removed cloudy gradient */
    backdrop-filter: none;
    /* Removed blur effect */
}


/* Products Section */
.products-section {
    padding: 4rem 0;
    position: relative;
    /* Added background image with transparency - fixed file extension */
    background-image: url('create_co1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Made background more visible */
    background-color: rgba(255, 255, 255, 0.7);
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced overlay transparency to make background more visible */
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Added full-width strip decoration for the entire products section */
.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--deep-olive) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, var(--taupe-sand) 50%, transparent 100%);
    background-size: 100% 2px, 2px 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    transition: color 0.3s;
    /* Added positioning to create space for background strip */
    position: relative;
    display: block;
    padding: 1rem 0;
    z-index: 2;
}

/* Added strip behind the section title */
.section-title::before {
    content: '';
    position: relative;
    top: 10%;
    left: 0;
    right: 0;
    height: 2px;
    /* Thin strip */
    background: linear-gradient(90deg, transparent, var(--deep-olive), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

/* Added secondary thinner strip */
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 100px;
    /* Even thinner strip */
    background: linear-gradient(90deg, transparent, var(--taupe-sand), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--card-bg);
    border: 2px solid var(--muted-moss);
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.filter-btn:hover {
    background-color: var(--soft-stone);
    border-color: var(--deep-olive);
}

.filter-btn.active {
    background-color: var(--deep-olive);
    color: var(--warm-off-white);
    border-color: var(--deep-olive);
}

.view-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem 0;
}

.view-toggle-btn {
    padding: 0.6rem 1.2rem;
    background-color: var(--card-bg);
    border: 2px solid var(--muted-moss);
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: 500;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background-color: var(--warm-off-white);
    width: 24px;
    border-radius: 4px;
}

/* Hide carousel navigation if only one slide - using JavaScript will handle this */

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    color: var(--muted-moss);
    font-size: 3rem;
    opacity: 0.3;
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-olive);
    margin-bottom: 1.5rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.buy-now-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1rem;
    background-color: var(--deep-olive);
    color: var(--warm-off-white);
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-btn:hover {
    background-color: var(--muted-moss);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 76, 60, 0.3);
}

.help-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1rem;
    background-color: var(--taupe-sand);
    color: var(--warm-off-white);
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-btn:hover {
    background-color: var(--muted-moss);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 76, 60, 0.3);
}

/* May I Help You Button */
.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--deep-olive);
    color: var(--warm-off-white);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.help-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.help-button:active {
    transform: translateY(0);
}

.help-icon {
    font-size: 20px;
}

/* Help Modal */
.help-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.help-modal.show {
    display: flex;
}

.help-modal-content {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}

.help-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.help-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 0;
}

.close-help-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-form-group {
    margin-bottom: 1.2rem;
}

.help-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.help-form-group input,
.help-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--muted-moss);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.help-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.help-submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--deep-olive);
    color: var(--warm-off-white);
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.help-submit-btn:hover {
    background-color: var(--muted-moss);
}

/* Ecommerce Modal */
.ecommerce-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.ecommerce-modal.show {
    display: flex;
}

.ecommerce-modal-content {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.close-ecommerce-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.ecommerce-platforms {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ecommerce-platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 70px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px;
    overflow: hidden;
}

.ecommerce-platform-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--deep-olive);
}

.ecommerce-platform-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--warm-off-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--soft-stone);
}

.footer-section p {
    color: var(--soft-stone);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--soft-stone);
    font-size: 0.9rem;
}

/* Animations */
@keyframes cinematicFloat {

    0%,
    100% {
        transform: translateZ(0) scale(1);
    }

    50% {
        transform: translateZ(20px) scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .hero-text-top .hero-title {
        font-size: 2.2rem;
    }

    .hero-text-top .hero-subtitle {
        font-size: 1rem;
    }
}

/* About Us Page Styles */

.about-hero {
    background-image: url("about-hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 12rem 0;
    /* Increased padding for more breathing room */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 243, 240, 0.6);
    /* Stronger, warmer overlay for readability */
    backdrop-filter: blur(2px);
    /* Subtle blur to soften background */
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    /* Reduced for elegance */
    font-weight: 600;
    color: #2C3325;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.about-subtitle {
    font-family: "Lato", sans-serif;
    font-size: 1.25rem;
    /* Reduced for elegance */
    color: #464C3C;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 3rem;
}

.values-list li {
    font-family: "Lato", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-olive);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s;
    white-space: nowrap;
}

.values-list li:hover {
    transform: translateY(-5px);
}

.values-list li::before {
    content: "✦";
    font-size: 1.5rem;
    color: var(--taupe-sand);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

.about-text p,
.founder-text p,
.vision-content>p {
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-olive);
    margin-bottom: 1.5rem;
}

.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 2.5rem 0;
    margin: 1.5rem 0;
}

/* Our Values - Grid of boxes with descriptions */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(240, 237, 230, 0.9), rgba(230, 224, 215, 0.85));
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    min-height: 140px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: #52594a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-family: "Lato", sans-serif;
    color: #6b7367;
    line-height: 1.6;
    font-size: 1rem;
}

/* Our Vision - Simple boxes */
.vision-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.vision-point {
    background: linear-gradient(135deg, rgba(240, 237, 230, 0.9), rgba(230, 224, 215, 0.85));
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    min-width: 240px;
    min-height: 140px;
}

.vision-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vision-point h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: #52594a;
    margin: 0;
    font-weight: 600;
}

.point-icon {
    font-size: 2rem;
    color: #6b7367;
    display: block;
    margin-bottom: 1rem;
}

/* About Nyara values list - Convert to boxes */
.values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2rem;
}

.values-list li {
    background: linear-gradient(135deg, rgba(240, 237, 230, 0.9), rgba(230, 224, 215, 0.85));
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #52594a;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    flex: 1;
    max-width: 320px;
    min-height: 120px;
}

.values-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.values-list li::before {
    content: "✦";
    font-size: 1.0rem;
    color: #6b7367;
    display: block;
    margin-bottom: 1rem;
}

/* Vision Section Specifics */
.vision-section {
    background-color: var(--bg-secondary);
    padding: 1.5rem 0;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vision-content>p {
    font-family: "Lato", sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    overflow: hidden;
}

.founder-content {
    max-width: 100%;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.founder-text {
    max-width: 100%;
    margin: 0;
    padding: 3rem 2rem;
    background: var(--soft-stone);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

/* Added keyframes for founder text animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.founder-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

@keyframes shine {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.founder-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.founder-name {
    font-weight: bold;
    color: var(--deep-olive);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.closing-note {
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--muted-moss);
}

.signature {
    font-weight: bold;
    margin: 1rem 0;
    color: var(--deep-olive);
}

.tagline {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--taupe-sand);
}

.founder-signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Hidden Admin Button */
.admin-access-container {
    text-align: center;
    padding: 2rem 0;
}

.admin-access-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--deep-olive);
    color: var(--warm-off-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.admin-access-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.admin-access-btn:hover::before {
    left: 100%;
}

.admin-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes rotate3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes rotate3dReverse {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.9) translateZ(20px);
    }

    100% {
        transform: rotateX(-360deg) rotateY(-360deg) rotateZ(-360deg) scale(0.9) translateZ(20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.product-grid-info {
    padding: 1.2rem;
}

.product-grid-name {
    font-size: 1.2rem;
}
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Product Image Gallery */
.product-grid-image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-gallery-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-gallery-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
}

.product-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.product-gallery-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.product-gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 2;
    pointer-events: none;
}

.product-gallery-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.founder-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.founder-name {
    font-weight: bold;
    color: var(--deep-olive);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.closing-note {
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--muted-moss);
}

.signature {
    font-weight: bold;
    margin: 1rem 0;
    color: var(--deep-olive);
}

.tagline {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--taupe-sand);
}

.founder-signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Hidden Admin Button */
.admin-access-container {
    text-align: center;
    padding: 2rem 0;
}

.admin-access-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--deep-olive);
    color: var(--warm-off-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.admin-access-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.admin-access-btn:hover::before {
    left: 100%;
}

.admin-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes rotate3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes rotate3dReverse {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.9) translateZ(20px);
    }

    100% {
        transform: rotateX(-360deg) rotateY(-360deg) rotateZ(-360deg) scale(0.9) translateZ(20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.product-grid-info {
    padding: 1.2rem;
}

.product-grid-name {
    font-size: 1.2rem;
}
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Product Image Gallery */
.product-grid-image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-gallery-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-gallery-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
}

.product-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.product-gallery-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.product-gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 2;
    pointer-events: none;
}

.product-gallery-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.product-gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.product-gallery-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.closing-note {
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--muted-moss);
}

.signature {
    font-weight: bold;
    margin: 1rem 0;
    color: var(--deep-olive);
}

.tagline {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--taupe-sand);
}

.founder-signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Hidden Admin Button */
.admin-access-container {
    text-align: center;
    padding: 2rem 0;
}

.admin-access-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--deep-olive);
    color: var(--warm-off-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.admin-access-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.admin-access-btn:hover::before {
    left: 100%;
}

.admin-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes rotate3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes rotate3dReverse {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.9) translateZ(20px);
    }

    100% {
        transform: rotateX(-360deg) rotateY(-360deg) rotateZ(-360deg) scale(0.9) translateZ(20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.product-grid-info {
    padding: 1.2rem;
}

.product-grid-name {
    font-size: 1.2rem;
}
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Product Image Gallery */
.product-grid-image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-gallery-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-gallery-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
}

.product-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.product-gallery-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.product-gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 2;
    pointer-events: none;
}

.product-gallery-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.product-gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.product-gallery-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    z-index: 2;
}

/* Product Grid - Full Image Overlay Design */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-grid-card {
    position: relative;
    aspect-ratio: 3/4;
    /* Taller rectangular shape */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #f0f0f0;
    cursor: pointer;
    border: none;
    /* Ensure no border */
}

.product-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    /* Remove any background */
}

.product-grid-image img,
.product-grid-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Removed image zoom on hover as requested */
/* .product-grid-card:hover .product-grid-image img {
    transform: scale(1.1);
} */

.product-grid-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.product-grid-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.product-grid-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-grid-sku {
    display: none;
}

.product-grid-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.product-grid-buy-btn {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--deep-olive);
    border: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.product-grid-buy-btn:hover {
    background: var(--deep-olive);
    color: white;
    opacity: 1;
    transform: translateY(-2px);
}

/* Carousel Controls - Fixed Positioning */
.product-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
    /* High z-index to be on top */
    color: var(--deep-olive);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-grid-card:hover .product-carousel-btn {
    opacity: 1;
    /* Show on hover */
}

.product-carousel-btn.prev {
    left: 10px;
}

.product-carousel-btn.next {
    right: 10px;
}

.product-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-gallery-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    z-index: 10;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-grid-card {
        aspect-ratio: 3/4;
    }

    .product-grid-name {
        font-size: 1.4rem;
    }

    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    z-index: 2;
}

/* Product Grid - Full Image Overlay Design */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-grid-card {
    position: relative;
    aspect-ratio: 3/4;
    /* Taller rectangular shape */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #f0f0f0;
    cursor: pointer;
    border: none;
    /* Ensure no border */
}

.product-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    /* Remove any background */
}

.product-grid-image img,
.product-grid-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Removed image zoom on hover as requested */
/* .product-grid-card:hover .product-grid-image img {
    transform: scale(1.1);
} */

.product-grid-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.product-grid-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.product-grid-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-grid-sku {
    display: none;
}

.product-grid-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.product-grid-buy-btn {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--deep-olive);
    border: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.product-grid-buy-btn:hover {
    background: var(--deep-olive);
    color: white;
    opacity: 1;
    transform: translateY(-2px);
}

/* Carousel Controls - Fixed Positioning */
.product-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
    /* High z-index to be on top */
    color: var(--deep-olive);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-grid-card:hover .product-carousel-btn {
    opacity: 1;
    /* Show on hover */
}

.product-carousel-btn.prev {
    left: 10px;
}

.product-carousel-btn.next {
    right: 10px;
}

.product-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-gallery-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    z-index: 10;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-grid-card {
        aspect-ratio: 3/4;
    }

    .product-grid-name {
        font-size: 1.4rem;
    }

    .product-grid-buy-btn {
        padding: 10px;
        font-size: 0.8rem;
    }

    /* Always show buttons on mobile */
    .product-carousel-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
    }
}

/* Contact Social Icons */
.contact-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--warm-off-white);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--warm-off-white);
}

.social-icon.facebook:hover {
    color: #1877F2;
}

.social-icon.instagram:hover {
    color: #E4405F;
}

.social-icon.whatsapp:hover {
    color: #25D366;
}