/*
Theme Name: 24 Karat Organics
Theme URI: https://24karatorganics.com
Author: Antigravity Builder
Description: Premium, brutalist WooCommerce theme for 24 Karat Organics.
Version: 1.0.0
*/
:root {
    --bg-sand: #F9F6F0;
    --brand-dark: #1A251E;
    --ghee-yellow: #FFC800;
    --honey-amber: #FF6B00;
    --accent-red: #E63946;
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;
    
    --border-thickness: 3px;
    --radius-soft: 12px;
    --radius-pill: 50px;
    --radius-card: 24px;
    
    --shadow-solid: 6px 6px 0px var(--brand-dark);
    --shadow-solid-hover: 2px 2px 0px var(--brand-dark);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--brand-dark);
    background-color: var(--bg-sand);
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5em;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
}

/* Typography Overrides */
h1 { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.5em;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    border: var(--border-thickness) solid var(--brand-dark);
    border-radius: var(--radius-pill);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: var(--shadow-solid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn:hover, .btn:focus {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--brand-dark);
}

.btn:active {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0px var(--brand-dark);
}

.product-card, .shop-card, .contact-card, .flow-node {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.product-card:hover, .shop-card:hover, .contact-card:hover, .flow-node:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--brand-dark);
    z-index: 10;
}

.btn-primary { background-color: var(--ghee-yellow); color: var(--brand-dark); }
.btn-secondary { background-color: white; color: var(--brand-dark); }
.btn-large { font-size: 1.2rem; padding: 1em 2em; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: var(--border-thickness) solid var(--brand-dark);
    background-color: var(--bg-sand);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.nav-link {
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--brand-dark);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    display: flex;
    min-height: 85vh;
    border-bottom: var(--border-thickness) solid var(--brand-dark);
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: var(--border-thickness) solid var(--brand-dark);
    background-color: white;
}

.hero-content h1 span {
    color: var(--honey-amber);
    display: block;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visuals {
    flex: 1;
    background-color: var(--bg-sand);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    height: 400px;
    width: auto;
    object-fit: contain;
    position: absolute;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.hero-img:hover { transform: translateY(-10px) scale(1.05); }

.img-ghee { z-index: 2; transform: translateX(-50px) rotate(-5deg); }
.img-honey { z-index: 1; transform: translateX(80px) translateY(30px) rotate(5deg); }

.doodle {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-red);
}

.doodle-arrow { top: 20%; left: 30%; transform: rotate(45deg); }
.doodle-burst { bottom: 20%; right: 20%; color: var(--ghee-yellow); }
.scribble-text {
    position: absolute;
    top: 30%;
    right: 15%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--brand-dark);
    transform: rotate(15deg);
    background-color: white;
    padding: 0.5rem 1rem;
    border: 2px solid var(--brand-dark);
    border-radius: var(--radius-pill);
}

/* Marquee */
.marquee-wrapper {
    background-color: var(--ghee-yellow);
    border-bottom: var(--border-thickness) solid var(--brand-dark);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 2rem;
    animation: marquee 20s linear infinite;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.outline-text {
    -webkit-text-stroke: 2px var(--brand-dark);
    color: transparent;
}

.floating-doodle {
    position: absolute;
    font-size: 4vw;
    color: var(--brand-dark);
    z-index: 10;
    pointer-events: none;
    animation: drift 5s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translateY(0px) rotate(-10deg); }
    to { transform: translateY(-20px) rotate(15deg); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Products Section */
.products-section {
    padding: 5rem 2rem;
    background-color: var(--bg-sand);
}

.section-header h2 { text-align: center; margin-bottom: 3rem; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border: var(--border-thickness) solid var(--brand-dark);
    border-radius: var(--radius-card);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-solid);
    display: flex;
    flex-direction: column;
}

.card-ghee { background-color: #FFFDF0; }
.card-honey { background-color: #FFF6EC; }

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-red);
    color: white;
    padding: 0.5em 1em;
    border: 2px solid var(--brand-dark);
    border-radius: var(--radius-pill);
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(5deg);
}

.product-img-wrapper {
    background-color: var(--bg-sand);
    border: 2px solid var(--brand-dark);
    border-radius: calc(var(--radius-card) - 10px);
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.product-img-wrapper img {
    height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--honey-amber);
    margin-bottom: 0.5rem;
}

.product-card.card-ghee .tagline { color: #D49D00; }

.description { margin-bottom: 2rem; font-size: 1.1rem; flex-grow: 1; }

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed rgba(0,0,0,0.2);
    padding-top: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

/* Process Section */
.process-section {
    background-color: white;
    border-top: var(--border-thickness) solid var(--brand-dark);
    border-bottom: var(--border-thickness) solid var(--brand-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.process-container { max-width: 1000px; margin: 0 auto; }
.process-container h2 { margin-bottom: 3rem; }

.flowchart-track {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem 4rem 1rem;
    max-width: 100%;
    scroll-snap-type: x mandatory;
}

.flowchart-track::-webkit-scrollbar {
    height: 12px;
}

.flowchart-track::-webkit-scrollbar-thumb {
    background-color: var(--brand-dark);
    border-radius: var(--radius-pill);
}

.flowchart-track::-webkit-scrollbar-track {
    background-color: var(--bg-sand);
    border: 3px solid var(--brand-dark);
    border-radius: var(--radius-pill);
}

.flow-node {
    flex: 0 0 320px;
    padding: 2rem;
    border: var(--border-thickness) solid var(--brand-dark);
    border-radius: var(--radius-card);
    background-color: var(--bg-sand);
    box-shadow: var(--shadow-solid);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flow-img-wrapper {
    width: 100%;
    height: 220px;
    background-color: white;
    border: 2px solid var(--brand-dark);
    border-radius: calc(var(--radius-card) - 10px);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.flow-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.flow-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    font-size: 4rem;
    color: var(--brand-dark);
    font-weight: 900;
}

.flow-node .step-icon {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--honey-amber);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--brand-dark);
    color: var(--bg-sand);
    padding: 5rem 2rem;
    text-align: center;
}

.footer h2 { color: var(--ghee-yellow); margin-bottom: 2rem; }

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    display: flex;
    gap: 1rem;
}

.input-text {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-body);
    border: var(--border-thickness) solid var(--bg-sand);
    border-radius: var(--radius-pill);
    background-color: transparent;
    color: white;
}

.input-text::placeholder { color: rgba(255,255,255,0.6); }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a { color: white; text-decoration: underline; }

.legal { font-size: 0.9rem; opacity: 0.7; }

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--ghee-yellow);
    border-top: var(--border-thickness) solid var(--brand-dark);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header h2 { text-align: center; margin-bottom: 3rem; }

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

.testimonial-card {
    background-color: white;
    border: var(--border-thickness) solid var(--brand-dark);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-solid);
}

.stars { color: var(--honey-amber); font-size: 2rem; margin-bottom: 1rem; }
.review-text { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.reviewer { font-family: var(--font-heading); font-size: 1.2rem; }

/* FAQ */
.faq-section {
    padding: 5rem 2rem;
    background-color: white;
    border-top: var(--border-thickness) solid var(--brand-dark);
    border-bottom: var(--border-thickness) solid var(--brand-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 { text-align: center; margin-bottom: 3rem; }

.faq-item {
    border-bottom: 2px solid var(--brand-dark);
    padding: 1.5rem 0;
}

.faq-item:first-of-type { border-top: 2px solid var(--brand-dark); }
.faq-item details { cursor: pointer; }

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 2.5rem;
    line-height: 1;
}

.faq-item details[open] summary::after { content: '-'; }

.faq-answer {
    padding-top: 1rem;
    font-size: 1.1rem;
    color: #333;
}

/* Shop Page Styles */
.shop-main { padding: 4rem 2rem; max-width: 1400px; margin: 0 auto; }
.shop-header { text-align: center; margin-bottom: 4rem; }
.shop-header h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 2rem; color: var(--brand-dark); text-transform: uppercase; }
.shop-filters { list-style: none; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.shop-filters li { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; cursor: pointer; padding-bottom: 0.2rem; border-bottom: 2px solid transparent; }
.shop-filters li.active { border-bottom: 3px solid var(--brand-dark); }
.shop-filters li:hover { opacity: 0.7; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 2rem; }
.shop-card { border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow-solid); }
.shop-card.hero-bundle { grid-column: span 2; flex-direction: row; }

.bg-ghee { background-color: var(--ghee-yellow); }
.bg-honey { background-color: var(--honey-amber); }
.bg-sand { background-color: #F1ECE1; }
.bg-olive { background-color: #E2E8D5; }

.card-image { padding: 3rem; display: flex; justify-content: center; align-items: center; border-bottom: var(--border-thickness) solid var(--brand-dark); overflow: hidden; position: relative; }
.shop-card.hero-bundle .card-image { border-bottom: none; border-right: var(--border-thickness) solid var(--brand-dark); flex: 1; }
.card-image img { height: 280px; width: auto; object-fit: contain; filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.15)); transition: transform 0.3s ease; }
.shop-card:hover .card-image img { transform: translateY(-10px) scale(1.05); }

.bundle-images { display: flex; align-items: center; justify-content: center; position: relative;}
.bundle-images img:nth-child(1) { transform: translateX(20px) rotate(-5deg); z-index: 2; height: 320px; }
.bundle-images img:nth-child(2) { transform: translateX(-20px) translateY(30px) rotate(5deg); z-index: 1; height: 280px; }
.shop-card:hover .bundle-images img:nth-child(1) { transform: translateX(20px) translateY(-10px) rotate(-5deg) scale(1.05); }

.card-content { padding: 2rem; display: flex; flex-direction: column; flex: 1; background-color: white; }
.card-content h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.card-content > p { font-size: 1.1rem; color: #555; margin-bottom: 2rem; flex: 1; }

.purchase-options { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.radio-label { display: flex; align-items: center; border: 2px solid var(--brand-dark); padding: 1rem; border-radius: var(--radius-soft); cursor: pointer; background: white; font-weight: 600; transition: all 0.2s; }
.radio-label:has(input:checked) { background-color: var(--ghee-yellow); }
.radio-label input { margin-right: 1rem; accent-color: var(--brand-dark); width: 1.2rem; height: 1.2rem; }
.radio-label .price { margin-left: auto; font-family: var(--font-heading); font-size: 1.2rem; }
.radio-label.sub-save { border: 2px dashed var(--brand-dark); }
.radio-label.sub-save:has(input:checked) { background-color: var(--ghee-yellow); border: 2px solid var(--brand-dark); }
.sub-badge { background: var(--accent-red); color: white; padding: 0.2em 0.5em; border-radius: var(--radius-pill); font-size: 0.8rem; margin-left: 0.5rem; }

.btn-block { width: 100%; border-radius: var(--radius-pill); padding: 1.2rem; font-size: 1.2rem; text-transform: uppercase; }

/* About Page Styles */
.about-main { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
.about-hero { text-align: center; margin-bottom: 5rem; }
.about-hero h1 { font-size: clamp(3.5rem, 8vw, 7rem); color: var(--brand-dark); line-height: 1; letter-spacing: -2px; margin-bottom: 2rem;}
.about-intro { font-size: 1.5rem; max-width: 800px; margin: 0 auto; line-height: 1.6; }

.about-body { background-color: white; border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); padding: 5rem; box-shadow: var(--shadow-solid); margin-bottom: 5rem; }
.about-content h2 { font-size: 2.5rem; margin-top: 3rem; margin-bottom: 1.5rem; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 1.2rem; margin-bottom: 1.5rem; line-height: 1.8; color: #444; }
.signoff { margin-top: 4rem; font-family: var(--font-heading); font-size: 1.5rem; color: var(--brand-dark); }
.signoff p { margin-bottom: 0.5rem; color: var(--brand-dark); font-weight: 700;}

.about-cta { text-align: center; padding: 4rem; background-color: var(--ghee-yellow); border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); box-shadow: var(--shadow-solid); margin-bottom: 4rem;}
.about-cta h2 { font-size: 4rem; margin-bottom: 2rem; }

/* Contact Page Styles */
.contact-main { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.contact-hero { text-align: center; margin-bottom: 5rem; }
.contact-hero h1 { font-size: clamp(3.5rem, 8vw, 6rem); color: var(--brand-dark); line-height: 1; margin-bottom: 2rem; text-transform: uppercase; }
.contact-intro { font-size: 1.3rem; max-width: 600px; margin: 0 auto; color: #444; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-details { display: grid; gap: 2rem; }
.contact-card { padding: 2rem; border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); box-shadow: var(--shadow-solid); }
.contact-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.contact-card p { font-size: 1.2rem; font-weight: 700; color: var(--brand-dark); }

.contact-form-wrapper { background-color: white; border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); padding: 4rem; box-shadow: var(--shadow-solid); }
.contact-form h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; }
.form-group input, .form-group textarea { font-family: var(--font-body); font-size: 1.1rem; padding: 1rem 1.5rem; border: 2px solid var(--brand-dark); border-radius: var(--radius-soft); background-color: var(--bg-sand); transition: all 0.2s; outline: none; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { background-color: white; box-shadow: 4px 4px 0px var(--brand-dark); }
.contact-form .btn-block { margin-top: 1rem; }

/* PDP (Product Detail Page) Styles */
.pdp-main { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--border-thickness) solid var(--brand-dark); min-height: calc(100vh - 84px); }

.pdp-gallery { height: calc(100vh - 84px); position: sticky; top: 84px; display: flex; justify-content: center; align-items: center; border-right: var(--border-thickness) solid var(--brand-dark); padding: 4rem; overflow: hidden; }
.main-product-img { max-height: 80%; width: auto; filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.15)); transition: transform 0.4s ease; }
.pdp-gallery:hover .main-product-img { transform: scale(1.05); }

.pdp-info { padding: 4rem 4rem 10rem 4rem; background-color: var(--bg-sand); }
.pdp-breadcrumbs { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 2rem; display: block; }
.pdp-breadcrumbs a { text-decoration: underline; color: #555; }
.pdp-breadcrumbs .current { font-weight: 700; color: var(--brand-dark); }

.pdp-title { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1rem; line-height: 1; text-transform: uppercase; }
.pdp-reviews { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; font-size: 1.1rem; }
.pdp-reviews .stars { font-size: 1.5rem; color: var(--brand-dark); }
.pdp-reviews a { text-decoration: underline; font-weight: 700; color: var(--brand-dark); }

.pdp-description { font-size: 1.3rem; line-height: 1.6; margin-bottom: 3rem; max-width: 600px; }

.pdp-purchase-widget { background-color: white; border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); padding: 2.5rem; margin-bottom: 3rem; box-shadow: var(--shadow-solid); }
.pdp-purchase-widget .radio-label { margin-bottom: 1rem; align-items: flex-start; }
.pdp-purchase-widget .radio-label input { margin-top: 0.3rem }
.pdp-purchase-widget .radio-label:last-of-type { margin-bottom: 0; }
.delivery-freq { display: block; font-size: 0.95rem; font-weight: 400; color: #555; margin-top: 0.5rem; font-family: var(--font-body); }

.add-to-cart-action { display: flex; gap: 1rem; margin-top: 2.5rem; }
.qty-selector { display: flex; border: 2px solid var(--brand-dark); border-radius: var(--radius-pill); background-color: white; overflow: hidden; width: 150px; }
.qty-btn { background: none; border: none; font-size: 1.8rem; width: 50px; cursor: pointer; font-weight: 700; color: var(--brand-dark); display: flex; justify-content: center; align-items: center;}
.qty-btn:hover { background-color: var(--bg-sand); }
.qty-input { flex: 1; text-align: center; border: none; border-left: 2px solid var(--brand-dark); border-right: 2px solid var(--brand-dark); font-size: 1.3rem; font-weight: 700; font-family: var(--font-heading); background: transparent; }
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-accordions { border-top: 2px solid var(--brand-dark); margin-top: 2rem; }
.pdp-accordion { border-bottom: 2px solid var(--brand-dark); padding: 1.5rem 0; cursor: pointer; }
.pdp-accordion summary { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--brand-dark); }
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion summary::after { content: '+'; font-size: 2.5rem; line-height: 1; }
.pdp-accordion[open] summary::after { content: '-'; }
.accordion-content { padding-top: 1rem; font-size: 1.15rem; line-height: 1.6; color: #333; }

/* Responsive */
@media (max-width: 900px) {
    .hero { flex-direction: column; }
    .hero-content { border-right: none; border-bottom: var(--border-thickness) solid var(--brand-dark); padding: 3rem 2rem; }
    .hero-visuals { min-height: 400px; }
    .nav-left, .nav-right { display: none; }
    .process-steps { grid-template-columns: 1fr; }
    .shop-card.hero-bundle { grid-column: span 1; flex-direction: column; }
    .shop-card.hero-bundle .card-image { border-right: none; border-bottom: var(--border-thickness) solid var(--brand-dark); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrapper { padding: 2rem; }

    .pdp-main { grid-template-columns: 1fr; }
    .pdp-gallery { height: 60vh; position: relative; top: 0; border-right: none; border-bottom: var(--border-thickness) solid var(--brand-dark); padding: 2rem; }
    .pdp-info { padding: 3rem 1.5rem; }
    .add-to-cart-action { flex-direction: column; }
    .qty-selector { width: 100%; justify-content: space-between; height: 60px; }
    .pdp-purchase-widget { padding: 1.5rem; }
}

/* ==== EXPANDED PDP STYLES ==== */
.pdp-guarantees { list-style: none; margin-top: 2rem; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.5rem; }
.pdp-guarantees li { font-size: 1.1rem; color: #444; margin-bottom: 0.5rem; font-weight: 600; }

.pdp-feature-split { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--border-thickness) solid var(--brand-dark); }
.feature-split-img { min-height: 500px; display: flex; align-items: center; justify-content: center; position: relative; border-right: var(--border-thickness) solid var(--brand-dark); overflow: hidden; }
.feature-split-content { padding: 6rem 4rem; background-color: var(--bg-sand); display: flex; flex-direction: column; justify-content: center; }
.feature-split-content h2 { font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; margin-bottom: 2rem; color: var(--brand-dark); }
.feature-split-content p { font-size: 1.3rem; margin-bottom: 1.5rem; line-height: 1.6; }
.feature-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.f-badge { padding: 0.5rem 1rem; border: 2px solid var(--brand-dark); border-radius: var(--radius-pill); font-weight: bold; background: white; text-transform: uppercase; font-size: 0.9rem;}

.pdp-usage-section { padding: 6rem 2rem; background-color: white; border-bottom: var(--border-thickness) solid var(--brand-dark); }
.pdp-usage-section h2 { text-align: center; font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 4rem; text-transform: uppercase; }
.usage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.usage-card { border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); padding: 3rem 2rem; text-align: center; box-shadow: var(--shadow-solid); }
.usage-img-placeholder { height: 120px; width: 120px; background: white; border: 2px solid var(--brand-dark); border-radius: 50%; margin: 0 auto 2rem auto; display: flex; align-items: center; justify-content: center; font-size: 4rem; box-shadow: 4px 4px 0px var(--brand-dark); }
.usage-card h3 { font-size: 2rem; margin-bottom: 1rem; }
.usage-card p { font-size: 1.15rem; }

.pdp-specs-section { padding: 6rem 2rem; background-color: var(--ghee-yellow); border-bottom: var(--border-thickness) solid var(--brand-dark); }
.specs-container { max-width: 800px; margin: 0 auto; }
.specs-container h2 { font-size: 4rem; text-align: center; text-transform: uppercase; margin-bottom: 1rem; }
.specs-intro { text-align: center; font-size: 1.3rem; margin-bottom: 3rem; font-weight: 600; }
.specs-table-wrapper { background: white; border: var(--border-thickness) solid var(--brand-dark); border-radius: var(--radius-card); padding: 2rem; box-shadow: var(--shadow-solid); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 1.5rem 1rem; text-align: left; border-bottom: 2px solid rgba(0,0,0,0.1); font-size: 1.15rem; }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }
.spec-label { font-family: var(--font-heading); width: 25%; font-size: 1.3rem !important; }
.spec-our { font-weight: 700; width: 45%; color: var(--brand-dark); border-right: 2px dashed rgba(0,0,0,0.1); }
.spec-their { font-style: italic; color: #777; width: 30%; }

.pdp-faq-section { padding: 6rem 2rem; border-bottom: var(--border-thickness) solid var(--brand-dark); }
.pdp-faq-section h2 { text-align: center; font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 3rem; text-transform: uppercase; }

@media (max-width: 900px) {
    .pdp-feature-split { grid-template-columns: 1fr; }
    .feature-split-img { border-right: none; border-bottom: var(--border-thickness) solid var(--brand-dark); min-height: 350px; }
    .feature-split-content { padding: 3rem 2rem; }
    .specs-table th, .specs-table td { display: block; width: 100%; border-right: none; }
    .specs-table tr { border-bottom: 2px solid var(--brand-dark); display: block; padding: 1rem 0; }
    .spec-label { padding-bottom: 0.5rem; }
}
