:root {
    --bg-main: #f3d8d8;
    /* Soft blush white */
    /* Precise sage-grey from reference */
    --text-primary: #000000;
    /* Deep warm grey */
    --text-muted: rgba(74, 62, 62, 0.7);
    --accent: #e8a8a8;
    /* Soft rose pink */
    --accent-dark: #d48b8b;
    --font-serif: 'Tahoma', sans-serif;
    --font-sans: 'Tahoma', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}


/* Premium Header */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* Thinner */
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Soft pink border */
    /* 1px white bottom line */
}

.header-left,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right {
    justify-content: flex-end;
    gap: 15px;
}

.header-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.text-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-group {
    display: flex;
    gap: 30px;
}

.nav-group a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
    opacity: 0.8;
}

.nav-group a:hover {
    color: var(--accent-dark);
    opacity: 1;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border: 1px solid rgba(232, 168, 168, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.lang-item {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.lang-item.active {
    color: var(--accent-dark);
    font-weight: 700;
}

.lang-item:hover {
    color: var(--accent-dark);
}

.lang-divider {
    color: rgba(232, 168, 168, 0.4);
    font-size: 12px;
}

.user-action-btn {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* Mother & Daughter Hero Section */
.hero-container.static-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    padding: 120px 8% 0 10%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Baby purple / Soft Pink gradient overlay */
    background: linear-gradient(135deg, rgba(235, 217, 245, 0.219) 0%, rgba(245, 217, 235, 0.164) 100%);
    z-index: 1;
}

.product-desc-col {
    position: relative;
    padding-bottom: 40px;
}

.product-secondary-details {
    margin-top: 30px;
}

.info-section {
    margin-bottom: 25px;
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.info-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.info-header-line {
    flex-grow: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.storage-note {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 30px 0;
    font-size: 0.85rem;
}

.facts-table {
    margin-bottom: 0;
    font-size: 0.95rem;
    background: transparent !important;
}

.facts-table th,
.facts-table td {
    padding: 12px 10px;
    background: transparent !important;
}

.disclaimer-box {
    border: 1px solid currentColor;
    padding: 3px;
    margin-bottom: 30px;
}

.disclaimer-inner {
    border: 1px solid currentColor;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
}

.manufacturer-info .company-name {
    font-weight: 600;
    text-transform: uppercase;
}

/* Modal Styling */
.modal-content {
    border-radius: 0;
    border: none;
    background-color: #EDE9DE;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 25px 40px;
}

.modal-body {
    padding: 40px;
}

.view-facts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.view-facts-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.main-title.staggered {
    font-family: var(--font-serif);
    font-size: 7.5vw;
    line-height: 0.8;
    /* Closed to each other */
    color: var(--text-primary);
    text-align: left;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(232, 168, 168, 0.1);
}

.main-title.staggered .line-1 {
    display: block;
}

.main-title.staggered .line-2 {
    display: block;
    margin-left: 6vw;
    /* Subtle staggered effect */
    font-style: italic;
    font-weight: 200;
}

.hero-footer-text p {
    color: rgba(39, 39, 39, 0.8);
    font-size: 16px;
    max-width: 400px;
    line-height: 1.6;
    margin-top: 50px;
}

/* Overlays */
.static-overlays {
    position: absolute;
    bottom: 40px;
    width: 90%;
    left: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.bottom-left-index {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.square-grid-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid rgba(232, 168, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.serif-font {
    font-family: var(--font-serif);
    color: var(--text-primary);
}

.vertical-divider {
    width: 1px;
    height: 60px;
    background: #ccc;
    margin: 30px auto;
}

.about-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.about-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin-top: 60px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    min-height: 200px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card.metric .metric-num {
    font-family: var(--font-serif);
    font-size: 60px;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-card.metric .metric-num span {
    font-size: 24px;
    color: var(--text-primary);
    margin-left: 2px;
}

.about-card.metric .metric-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.about-card.text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header-center {
        display: none;
    }

    .main-title {
        font-size: 10vw;
    }

    .bottom-right-text {
        right: 40px;
        text-align: right;
    }
}

/* Products Section */
.product-section {
    background-color: #f4f4f4;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    padding: 0;
    /* Removed padding for full width */
    display: flex;
    justify-content: center;
    background: #fff;
    height: 500px;
    /* Increased height for perfect placement */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the entire area */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.product-info-wrapper {
    padding: 0 30px 20px 30px;
}

.product-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    align-items: stretch;
    /* Stretch to allow vertical divider */
}

.product-num {
    font-size: 42px;
    font-weight: 700;
    color: #f3b178;
    /* More precise peach color */
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #eee;
    /* Vertical divider */
    display: flex;
    align-items: center;
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 26px;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-desc {
    font-size: 14px;
    color: #888;
    margin: 5px 0 0 0;
}

.product-footer {
    border-top: 1px solid #eee;
}

.add-to-cart-btn {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #f9f9f9;
}

/* Responsive Grid for Products */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Research & Development Section */
.rd-section {
    background-color: #ffffff;
    overflow: hidden;
}

.rd-left-col {
    background-color: #d1a4a4;
    /* Dusty rose/pink from design */
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 100px 80px;
    overflow: hidden;
}

.rd-right-col {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: relative;
}

.rd-content-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 5;
    position: relative;
}

.rd-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
}

.rd-title {
    font-size: 7.5vw;
    line-height: 0.9;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: -2px;
}

.rd-molecular-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -30%);
    width: 120%;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
}

.mol-overlay {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rd-action-circle {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-top: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    position: relative;
}

.rd-action-circle:hover {
    transform: scale(1.1);
}

.learn-more-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.rd-bottom-overlays {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.rd-index {
    font-size: 14px;
    opacity: 0.8;
}

.rd-wave-container {
    width: 120px;
}

.wave-svg {
    width: 100%;
    height: auto;
}

/* Right Column Content */
.rd-content-right {
    max-width: 90%;
    width: 100%;
}

.rd-lab-image-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lab-img {
    width: 100%;
    height: auto;
    display: block;
}

.rd-subtitle {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #a3b8b0;
    /* Soft teal/sage from design */
    font-weight: 200;
    margin-bottom: 40px;
}

.rd-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.rd-footer-icons {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.minimalist-icon-btn {
    width: 48px;
    height: 48px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Patient Stories Banner Section */
.patient-stories-section {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.patient-banner-content {
    position: relative;
    z-index: 5;
}

.banner-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
}

.banner-title {
    font-size: 5.5rem;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -1px;
    color: white;
}

.banner-action-circle {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner-action-circle:hover {
    transform: scale(1.1);
}

.banner-bottom-overlays {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.banner-index {
    font-size: 14px;
    opacity: 0.8;
}

.banner-wave-container {
    width: 120px;
}

.banner-footer-icons {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

/* FAQ Section - Redesign */
.faq-container-section {
    background-color: var(--bg-main);
}

.faq-main-wrapper {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-title-serif {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 300;
    color: var(--text-primary);
}

.faq-accordion-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-new {
    border-bottom: 1px solid rgba(74, 62, 62, 0.1);
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-question-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.faq-text-new {
    font-size: 20px;
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-weight: 400;
}

.faq-icon-new {
    font-size: 24px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item-new.active .faq-answer-new {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    margin-top: 15px;
}

.faq-answer-new p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.faq-serum-img {
    border-radius: 20px;
    /* Removed custom shadow since the image has its own lighting */
}

@media (max-width: 992px) {
    .faq-title-serif {
        font-size: 60px;
    }
}


/* Elegant Footer */
.elegant-footer {
    background-color: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #f0f0f0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-dark);
}

.footer-bottom {
    border-top: 1px solid #f9f9f9;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Global Responsive Adjustments */
@media (max-width: 991px) {

    .rd-left-col,
    .rd-right-col {
        min-height: auto;
        padding: 60px 20px;
    }

    .rd-title {
        font-size: 4rem;
    }

    .rd-subtitle {
        font-size: 2.5rem;
    }

    .banner-title {
        font-size: 3rem;
    }

    .patient-stories-section {
        height: 80vh;
    }

    .faq-title-serif {
        font-size: 2.5rem;
    }

    .faq-text-new {
        font-size: 18px;
    }
}

/* About Us Page Styles */
.about-hero-section {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 60px;
    /* offset for fixed header */
    color: white;
}

.about-hero-title {
    font-size: 60px;
    font-weight: 300;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.about-main-content {
    background-color: #ffffff;
}

.about-page-title {
    font-size: 100px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.project-meta-box {
    color: #999;
    font-size: 14px;
}

.meta-item {
    margin-bottom: 5px;
}

.meta-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-text-small {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.about-statement-large {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 400;
    color: #000;
}

.about-statement-large .text-muted {
    color: #999 !important;
}

.small-text {
    font-size: 13px;
    letter-spacing: 0.05em;
}

.about-bottom-divider {
    border-color: #eee !important;
}

@media (max-width: 991px) {
    .about-page-title {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .about-statement-large {
        font-size: 32px;
        margin-top: 10px;
    }

    .about-hero-section {
        height: 300px;
    }
}

/* Trust Section Styles (About page) */
.trust-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    color: #000;
}

.text-trust-muted {
    color: #9ea9a9;
}

.trust-subtext {
    max-width: 380px;
}

.trust-image-wrapper img {
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-card {
    padding: 50px 40px;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.stat-card.light-grey {
    background-color: #f2f2f2;
}

.stat-card.dark-grey {
    background-color: #a7b1b1;
    color: #fff;
}

.stat-card.dark-grey .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.stat-num {
    font-size: 84px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .trust-title {
        font-size: 52px;
    }

    .stat-num {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .trust-title {
        font-size: 42px;
    }

    .trust-image-wrapper img {
        border-radius: 40px;
        margin-top: 40px;
        height: 350px;
    }

    .stat-card {
        min-height: 300px;
        padding: 30px;
    }
}

/* Certificates Section Styles */
.certificates-section {
    background-color: #fff;
}

.certificate-card {
    position: relative;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(167, 177, 177, 0.2);
    border-color: #a7b1b1;
}

.certificate-card img {
    border-radius: 4px;
    width: 100%;
    filter: grayscale(10%) contrast(1.05);
    transition: filter 0.3s ease;
}

.certificate-card:hover img {
    filter: grayscale(0%) contrast(1.1);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(167, 177, 177, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-overlay i {
    color: #fff;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.certificate-card:hover .cert-overlay {
    opacity: 1;
}

/* Products Page - Detailed Alternating Layout */
.products-hero-section {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 60px;
}

.product-listing-main {
    background-color: #fff;
}

.product-row-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-visual-wrapper {
    height: 100%;
    width: 100%;
    min-height: 600px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.product-slider,
.product-slider .slick-list,
.product-slider .slick-track {
    height: 100%;
}

.slider-item {
    height: 100%;
    min-height: 600px;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-row-section:hover .slider-item img {
    transform: scale(1.05);
}

/* Slick Arrow Styling */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    backdrop-filter: blur(4px);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:hover,
.slick-next:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slick-prev::before,
.slick-next::before {
    display: none;
    /* Hide default slick arrows */
}

@media (max-width: 991px) {
    .slider-item {
        height: 400px;
    }

    .product-visual-wrapper {
        min-height: 400px;
    }
}

.product-desc-col {
    display: flex;
    align-items: center;
    padding: 80px 4%;
}

.product-desc-col.variant-1 {
    background-color: #ebf0f0;
}

/* Soft Sage */
.product-desc-col.variant-2 {
    background-color: #f7eded;
}

/* Soft Rose */
.product-desc-col.variant-3 {
    background-color: #eef1f7;
}

/* Soft Blue */
.product-desc-col.variant-4 {
    background-color: #f7f3ed;
}

/* Soft Sand */

.product-listing-name {
    font-size: 48px;
    font-weight: 300;
    color: #333;
}

.product-listing-price {
    color: var(--accent-dark);
    font-weight: 600;
}

.facts-table {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    background: transparent !important;
}

.facts-table thead th {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.facts-table tbody td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    font-size: 14px;
}

.manufactured-info p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .product-desc-col {
        padding: 60px 40px;
    }

    .product-listing-name {
        font-size: 32px;
    }

    .product-visual-wrapper {
        min-height: 400px;
        padding: 40px;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 400px;
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-radius: 20px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(var(--brand-accent-rgb), 0.1);
    color: var(--brand-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.bloom-form .form-control {
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 1rem 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.bloom-form .form-control:focus {
    box-shadow: none;
    border-color: var(--brand-accent);
}

.bloom-form label {
    padding-left: 0.5rem;
    opacity: 0.5;
}

.submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 18px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.submit-btn:hover {
    background: #333;
    transform: scale(1.02);
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
    }
}