/* DIY Cupboard Factory — app.css | Elementor pixel-match
   Load order: elementor.css FIRST, then this file.
   Colours: red #e8272a | yellow #f5c518 | bg #1a1a1a
   Fonts: Syne 700 (heads) | Figtree 400 (body) | Roboto Slab 400 (accent)
*/

/* RESET */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --clr-bg:#1a1a1a;--clr-surface:#222;--clr-border:#333;
  --clr-yellow:#f5c518;--clr-red:#e8272a;
  --yellow:#f5c518;
  --clr-white:#fff;--clr-text:#ccc;--clr-muted:#888;
  --clr-light-bg:#f5f5f5;--clr-light-text:#1a1a1a;
  --font-head:'Syne',sans-serif;--font-body:'Figtree',sans-serif;--font-slab:'Roboto Slab',serif;
  --container:1500px;--radius:4px;--transition:0.25s ease;
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);font-size:16px;line-height:1.65;background:var(--clr-bg);color:var(--clr-text);-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
address{font-style:normal}
button{cursor:pointer;border:none;background:none;font:inherit}

/* CONTAINER */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6{font-family:var(--font-head);font-weight:700;line-height:1.2;color:var(--clr-white)}

/* BUTTONS — yellow is the single accent colour for all primary CTAs */
.btn{display:inline-block;font-family:var(--font-head);font-weight:700;font-size:.9rem;letter-spacing:.04em;text-transform:uppercase;padding:14px 28px;border-radius:var(--radius);transition:var(--transition);border:2px solid transparent;cursor:pointer;text-align:center}
.btn--primary{background:var(--clr-yellow);color:#1a1a1a;border-color:var(--clr-yellow)}
.btn--primary:hover{background:#d4a800;border-color:#d4a800}
.btn--yellow{background:var(--clr-yellow);color:#1a1a1a;border-color:var(--clr-yellow)}
.btn--yellow:hover:not(:disabled):not(.btn--disabled){background:#d4a800;border-color:#d4a800}
/* Disabled: stays yellow, just dimmed — never goes grey */
.btn--yellow:disabled,.btn--yellow[disabled],.btn--disabled{background:var(--clr-yellow)!important;color:#1a1a1a!important;border-color:var(--clr-yellow)!important;opacity:.45;cursor:not-allowed}
.btn--outline{background:transparent;color:var(--clr-white);border-color:var(--clr-white)}
.btn--outline:hover{background:var(--clr-white);color:var(--clr-bg)}
.btn--sm{padding:8px 18px;font-size:.8rem}

/* SECTIONS */
.section{padding:80px 0}
.section--dark{background:var(--clr-bg)}
.section--alt{background:#222}
.section--light{background:var(--clr-light-bg);color:var(--clr-light-text)}
.section--light h1,.section--light h2,.section--light h3{color:var(--clr-light-text)}
/* My Account dark override */
.my-account-section.section--light{background:var(--clr-bg);color:var(--clr-white)}
.section__eyebrow{font-family:var(--font-slab);font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--clr-red)!important;margin-bottom:12px;text-align:center;display:block}
.section__title{font-size:clamp(1.8rem,3vw,2.6rem);color:var(--clr-white);margin-bottom:16px;text-align:center}
.section__title--left{text-align:left}
.section__sub{font-size:1rem;color:var(--clr-text);max-width:680px;margin:0 auto 48px;text-align:center}
.section__cta{text-align:center;margin-top:40px}

/* HEADER */
.site-header{position:sticky;top:0;z-index:1000;background:#1a1a1a;border-bottom:1px solid #2a2a2a}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;max-width:var(--container);margin:0 auto;padding:0 24px;height:72px;position:relative}
.site-header__logo{flex-shrink:0}
.site-header__logo img{height:44px;width:auto}
.site-header__nav{position:absolute;left:50%;transform:translateX(-50%)}
.nav-menu{display:flex;align-items:center;gap:8px}
.nav-item{font-family:var(--font-head);font-weight:700;font-size:.9rem;color:var(--clr-white);padding:8px 14px;border-bottom:2px solid transparent;transition:var(--transition);white-space:nowrap}
.nav-item:hover{color:var(--clr-yellow)}
.nav-item--active{color:var(--clr-yellow);border-bottom-color:var(--clr-yellow)}
.site-header__right{display:flex;align-items:center;gap:12px}
.site-header__search-btn{color:var(--clr-white);padding:6px;border-radius:var(--radius);transition:var(--transition)}
.site-header__search-btn:hover{color:var(--clr-yellow)}
.site-header__cart{position:relative;display:flex;align-items:center;color:var(--clr-white);padding:6px;border-radius:var(--radius);transition:var(--transition)}
.site-header__cart:hover{color:var(--clr-yellow)}
.site-header__cart-badge{position:absolute;top:-4px;right:-6px;min-width:18px;height:18px;padding:0 4px;background:var(--clr-yellow);color:#111;font-size:.65rem;font-weight:700;border-radius:9px;display:flex;align-items:center;justify-content:center;line-height:1}
.site-header__hamburger{display:none;flex-direction:column;gap:5px;padding:6px;width:36px}
.site-header__hamburger span{display:block;height:2px;background:var(--clr-white);border-radius:2px;transition:var(--transition)}
.site-header__hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.site-header__hamburger[aria-expanded="true"] span:nth-child(2){opacity:0}
.site-header__hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* HERO */
.hero{position:relative;min-height:85vh;display:flex;flex-direction:column;align-items:stretch;justify-content:center;background-size:cover;background-position:center;background-repeat:no-repeat}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,.45) 100%)}
.hero__content{position:relative;z-index:2;max-width:900px;width:100%;padding:80px 24px 40px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;margin:0 auto;flex:1}
.hero__title{font-size:clamp(2rem,5vw,3.5rem);color:var(--clr-white);margin-bottom:20px;line-height:1.1;text-transform:uppercase;text-align:center;width:100%}
.hero__sub{font-size:1.1rem;color:rgba(255,255,255,.85);margin-bottom:32px;max-width:640px;text-align:center}
.hero__ctas{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;align-items:center}
.hero__badges{position:relative;z-index:2;display:flex;background:rgba(0,0,0,.6);width:100%;align-self:flex-end}
.hero__badge{flex:1;display:flex;align-items:center;gap:10px;padding:18px 24px;border-right:1px solid rgba(255,255,255,.1);font-size:.85rem;color:rgba(255,255,255,.9);font-family:var(--font-head);font-weight:600}
.hero__badge:last-child{border-right:none}
.hero__badge svg{flex-shrink:0}

/* PAGE HERO */
.page-hero{position:relative;min-height:220px;display:flex;align-items:center;justify-content:center;background-size:cover;background-position:center;text-align:center}
.page-hero__overlay{position:absolute;inset:0;background:rgba(0,0,0,.65)}
.page-hero__content{position:relative;z-index:2;padding:48px 24px}
.page-hero__title{font-size:clamp(1.8rem,4vw,3rem);color:var(--clr-white);margin-bottom:12px}
.page-hero__title--dark{color:var(--clr-light-text)}
.page-hero--simple{background:var(--clr-surface);min-height:120px}
.page-hero--light{background:var(--clr-light-bg)}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;font-size:.9rem;color:rgba(255,255,255,.7)}
.breadcrumb a{color:rgba(255,255,255,.7)}
.breadcrumb a:hover{color:var(--clr-yellow)}

/* RANGE GRID */
.range-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}
.range-card{display:block;border-radius:var(--radius);overflow:hidden;background:var(--clr-surface);transition:var(--transition);text-align:center}
.range-card:hover{transform:translateY(-4px)}
.range-card img{width:100%;height:200px;object-fit:cover}
.range-card__label{font-family:var(--font-head);font-weight:700;font-size:1rem;color:var(--clr-white);padding:12px 16px 4px}
.range-card__sub{font-size:.85rem;color:var(--clr-muted);padding:0 16px 16px}

/* ICON BOXES */
.icon-boxes{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-top:48px}
.icon-box{text-align:center}
.icon-box__icon{width:64px;height:64px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center}
.icon-box__title{font-size:1rem;color:var(--clr-white);margin-bottom:8px}
.icon-box__desc{font-size:.9rem;color:var(--clr-text)}

/* PRODUCT GRID */
.product-grid{display:flex;flex-wrap:wrap;gap:24px;margin-top:40px;justify-content:center}
.product-grid--4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px;max-width:1160px;margin-left:auto;margin-right:auto}
.product-card{background:var(--clr-surface);border-radius:var(--radius);overflow:hidden;text-align:center;transition:var(--transition)}
.product-card:hover{transform:translateY(-4px)}
.product-card__img-wrap{width:100%;aspect-ratio:1;overflow:hidden;background:#2a2a2a;display:flex;align-items:center;justify-content:center}
.product-card__img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.product-card:hover .product-card__img-wrap img{transform:scale(1.05)}
.product-card__name{font-family:var(--font-head);font-weight:700;font-size:.9rem;color:var(--clr-white);padding:14px 12px 16px}

/* SPLIT SECTION */
.split-section__grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.split-section__grid--reverse{direction:rtl}
.split-section__grid--reverse>*{direction:ltr}
.split-section__img img{width:100%;height:480px;object-fit:cover;border-radius:var(--radius)}
.split-section__content .section__title{margin-bottom:20px}
.split-section__content p{margin-bottom:20px;color:var(--clr-text)}
.check-list{margin:0 0 28px}
.check-list li{position:relative;padding-left:28px;margin-bottom:10px;color:var(--clr-text);font-size:.95rem}
.check-list li::before{content:'\2713';position:absolute;left:0;color:var(--clr-yellow);font-weight:700}

/* STEPS */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:48px}
.step-card{text-align:center;padding:32px 24px}
.step-card__num{font-family:var(--font-head);font-size:3rem;font-weight:800;color:var(--clr-yellow);margin-bottom:16px;line-height:1}
.step-card__title{font-size:1.1rem;color:var(--clr-white);margin-bottom:12px}
.step-card__desc{font-size:.9rem;color:var(--clr-text)}

/* TESTIMONIALS */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.testimonial-card{background:var(--clr-surface);border-radius:var(--radius);padding:28px 24px}
.testimonial-card__stars{color:var(--clr-yellow);font-size:1rem;margin-bottom:12px;letter-spacing:2px}
.testimonial-card__text{font-size:.9rem;color:var(--clr-text);margin-bottom:16px;font-style:italic;line-height:1.6}
.testimonial-card__author{font-family:var(--font-head);font-weight:700;font-size:.9rem;color:var(--clr-white)}

/* STATS */
.stats-section{padding:60px 0;border-top:1px solid var(--clr-border);border-bottom:1px solid var(--clr-border)}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.stat-item{text-align:center;padding:24px;border-right:1px solid var(--clr-border)}
.stat-item:last-child{border-right:none}
.stat-item__num{font-family:var(--font-head);font-size:clamp(2.5rem,5vw,4rem);font-weight:800;color:var(--clr-white);line-height:1;margin-bottom:8px}
.stat-item__label{font-size:.85rem;color:var(--clr-text);text-transform:uppercase;letter-spacing:.08em}

/* CTA BANNER */
.cta-banner{position:relative;background-size:cover;background-position:center;padding:100px 0;text-align:center}
.cta-banner__overlay{position:absolute;inset:0;background:rgba(0,0,0,.7)}
.cta-banner__content{position:relative;z-index:2;max-width:700px;margin:0 auto;padding:0 24px}
.cta-banner__title{font-size:clamp(1.8rem,3.5vw,2.8rem);color:var(--clr-white);margin-bottom:16px}
.cta-banner__sub{font-size:1rem;color:rgba(255,255,255,.85);margin-bottom:32px}

/* ACCORDION */
.accordion{margin-top:24px}
.accordion__item{border-top:1px solid var(--clr-border)}
.accordion__item:last-child{border-bottom:1px solid var(--clr-border)}
.accordion__trigger{display:flex;justify-content:space-between;align-items:center;width:100%;padding:16px 0;font-family:var(--font-head);font-weight:700;font-size:1rem;color:var(--clr-yellow);text-align:left}
.accordion__icon{font-size:.7rem}
.accordion__body{padding:0 0 16px;color:var(--clr-text);font-size:.95rem}

/* FAQ */
.faq-container{max-width:800px;margin:0 auto}
.faq-list{margin-top:40px}
.faq-item{border-top:1px solid var(--clr-border)}
.faq-item:last-child{border-bottom:1px solid var(--clr-border)}
.faq-trigger{display:flex;justify-content:space-between;align-items:center;width:100%;padding:20px 0;font-family:var(--font-head);font-weight:700;font-size:1rem;color:var(--clr-white);text-align:left;transition:var(--transition)}
.faq-item--open .faq-trigger,.faq-trigger:hover{color:var(--clr-yellow)}
.faq-icon{font-size:.7rem;flex-shrink:0;margin-left:12px}
.faq-body{padding:0 0 20px;color:var(--clr-text);font-size:.95rem;line-height:1.7}
.faq-cta{text-align:center;margin-top:60px;padding:48px;background:var(--clr-surface);border-radius:var(--radius)}
.faq-cta h3{font-size:1.8rem;color:var(--clr-white);margin-bottom:12px}
.faq-cta p{color:var(--clr-text);margin-bottom:24px}

/* CONTACT */
.contact-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:48px;text-align:center}
.contact-info-item__icon{width:56px;height:56px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center}
.contact-info-item h3{font-size:1rem;color:var(--clr-white);margin-bottom:8px}
.contact-info-item a,.contact-info-item address{color:var(--clr-text);font-size:.9rem}
.contact-info-item a:hover{color:var(--clr-yellow)}
.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.contact-form-grid__img img{width:100%;height:500px;object-fit:cover;border-radius:var(--radius)}
.contact-form{margin-top:28px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:.85rem;font-weight:600;color:var(--clr-white);margin-bottom:6px}
.form-group input,.form-group textarea,.form-group select{width:100%;background:var(--clr-surface);border:1px solid var(--clr-border);border-radius:var(--radius);padding:12px 14px;font-family:var(--font-body);font-size:.9rem;color:var(--clr-white);transition:var(--transition)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--clr-muted)}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--clr-yellow)}
.form-group textarea{resize:vertical;min-height:120px}
.required{color:var(--clr-red)}
.contact-map{margin-top:0}
.contact-map iframe{display:block;width:100%;height:400px;border:0}
.contact-map__placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;height:300px;background:var(--clr-surface);color:var(--clr-text-muted);text-align:center;padding:24px}
.contact-map__placeholder p{margin:0;font-size:.9rem}
.contact-map__placeholder a{color:var(--clr-yellow)}
.contact-map__link-row{display:flex;justify-content:center;padding:12px 0;background:var(--clr-bg)}
.contact-map__gmaps-link{display:inline-flex;align-items:center;gap:6px;color:var(--clr-yellow);font-size:.9rem;font-weight:600;text-decoration:none;transition:opacity .2s}
.contact-map__gmaps-link:hover{opacity:.8}

/* LEGAL */
.legal-container{max-width:800px;margin:0 auto}
.legal-heading{font-size:1.3rem;color:var(--clr-white);margin:32px 0 12px;padding-bottom:8px;border-bottom:1px solid var(--clr-border)}
.legal-section p{color:var(--clr-text);margin-bottom:14px;font-size:.95rem;line-height:1.75}

/* MY ACCOUNT */
.my-account-section{padding:60px 0}
.my-account-grid{display:grid;grid-template-columns:280px 1fr;gap:48px;align-items:start}
.my-account-nav ul{display:flex;flex-direction:column}
.my-account-nav__item a{display:block;padding:14px 20px;font-family:var(--font-head);font-weight:600;font-size:.95rem;color:var(--clr-white);border-bottom:1px solid #333;transition:var(--transition)}
.my-account-nav__item a:hover{color:var(--clr-yellow)}
.my-account-nav__item--active a{background:var(--clr-yellow);color:#1a1a1a;font-weight:700}
.my-account-dashboard{background:var(--clr-surface);border:1px solid #333;border-radius:var(--radius);padding:24px}
.my-account-dashboard p{color:var(--clr-text);margin-bottom:12px;font-size:.95rem}
.my-account-dashboard a{color:var(--clr-yellow)}
.my-account-dashboard a:hover{text-decoration:underline}
.my-account-login-prompt{font-style:italic;color:#555}

/* FOOTER */
.site-footer{background:#1a1a1a;border-top:1px solid #2a2a2a}
.site-footer__inner{max-width:var(--container);margin:0 auto;padding:0 24px}
.site-footer__top{display:grid;grid-template-columns:auto 1fr auto;gap:48px;align-items:center;padding:48px 0 32px}
.site-footer__logo{display:block}
.site-footer__logo img{height:52px;width:auto}
.site-footer__nav ul{display:flex;flex-wrap:wrap;gap:8px 24px}
.site-footer__nav a{font-family:var(--font-head);font-weight:600;font-size:.9rem;color:var(--clr-text);transition:var(--transition)}
.site-footer__nav a:hover,.site-footer__nav a.active{color:var(--clr-yellow)}
.site-footer__payment{text-align:right}
.site-footer__payment-label{font-family:var(--font-head);font-weight:700;font-size:.85rem;color:var(--clr-white);margin-bottom:10px}
.site-footer__payment-icons{display:flex;gap:8px;align-items:center;justify-content:flex-end}
.site-footer__payment-icons img{height:32px;width:auto}
.site-footer__rule{border:none;border-top:1px solid #2a2a2a}
.site-footer__bottom{display:flex;justify-content:space-between;align-items:center;padding:20px 0;flex-wrap:wrap;gap:12px}
.site-footer__copy{font-size:.85rem;color:var(--clr-muted)}
.site-footer__legal{display:flex;gap:20px;flex-wrap:wrap}
.site-footer__legal a{font-size:.85rem;color:var(--clr-muted);transition:var(--transition)}
.site-footer__legal a:hover{color:var(--clr-yellow)}

/* WHATSAPP */
.whatsapp-float{position:fixed;bottom:24px;right:24px;z-index:9999;width:56px;height:56px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);transition:transform var(--transition),box-shadow var(--transition)}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.5)}

/* SHOP */
.shop-grid{display:grid;grid-template-columns:260px 1fr;gap:48px;margin-top:40px;align-items:start}
.shop-sidebar{background:var(--clr-surface);border-radius:var(--radius);padding:24px}
.shop-sidebar__title{font-family:var(--font-head);font-weight:700;font-size:1rem;color:var(--clr-white);margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--clr-border)}
.shop-sidebar__list{display:flex;flex-direction:column;gap:8px}
.shop-sidebar__list a{font-size:.9rem;color:var(--clr-text);padding:6px 0;transition:var(--transition)}
.shop-sidebar__list a:hover{color:var(--clr-yellow)}
.shop-products-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}

/* 404 */
.error-page{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:60vh;text-align:center;padding:80px 24px}
.error-page__code{font-size:clamp(5rem,15vw,10rem);font-family:var(--font-head);font-weight:800;color:var(--clr-yellow);line-height:1;margin-bottom:16px}
.error-page__title{font-size:2rem;color:var(--clr-white);margin-bottom:16px}
.error-page__sub{color:var(--clr-text);margin-bottom:32px}

/* RESPONSIVE */
@media(max-width:1024px){
  .range-grid,.icon-boxes{grid-template-columns:repeat(2,1fr)}
  .product-grid--4{grid-template-columns:repeat(2,1fr)}
  .shop-products-grid{grid-template-columns:repeat(4,1fr)}
  .split-section__grid{grid-template-columns:1fr;gap:32px}
  .split-section__grid--reverse{direction:ltr}
  .split-section__img img{height:320px}
  .testimonials-grid{grid-template-columns:1fr}
  .contact-form-grid{grid-template-columns:1fr}
  .contact-form-grid__img{display:none}
  .site-footer__top{grid-template-columns:1fr;text-align:center;gap:24px}
  .site-footer__payment{text-align:center}
  .site-footer__payment-icons{justify-content:center}
}
@media(max-width:768px){
  .site-header__nav{display:none}
  .site-header__search-btn{display:none}
  .site-header__hamburger{display:flex}
  .site-header__nav.is-open{display:flex;flex-direction:column;position:fixed;top:72px;right:0;bottom:0;width:280px;background:#1a1a1a;padding:24px;z-index:1001;overflow-y:auto}
  .site-header__nav.is-open .nav-menu{flex-direction:column;align-items:flex-start;gap:4px}
  .nav-item{padding:12px 0;font-size:1.1rem;border-bottom:none}
  .hero{min-height:70vh}
  .hero__content{padding:60px 24px 32px}
  .hero__badges{flex-direction:column}
  .hero__badge{border-right:none;border-bottom:1px solid rgba(255,255,255,.1)}
  .hero__badge:last-child{border-bottom:none}
  .steps-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:1fr}
  .stat-item{border-right:none;border-bottom:1px solid var(--clr-border)}
  .stat-item:last-child{border-bottom:none}
  .contact-info-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .my-account-grid{grid-template-columns:1fr}
  .shop-grid{grid-template-columns:1fr}
  .shop-products-grid{grid-template-columns:repeat(3,1fr)}
  .site-footer__bottom{flex-direction:column;text-align:center}
  .site-footer__legal{justify-content:center}
}
@media(max-width:480px){
  .range-grid,.icon-boxes{grid-template-columns:1fr}
  .product-grid--4,.shop-products-grid{grid-template-columns:1fr 1fr}
  .hero__ctas{flex-direction:column}
}


/* ═══════════════════════════════════════════════════════════════════════
   SHOP LAYOUT — Phase 4
   ═══════════════════════════════════════════════════════════════════════ */

.shop-layout { padding-top: 2rem; padding-bottom: 4rem; }

/* Category chips */
.category-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .4rem .85rem; border-radius: 999px; border: 1px solid #3a3a3a;
    background: #1e1e1e; color: #ccc; font-size: .8rem; font-weight: 500;
    text-decoration: none; transition: background .2s, color .2s, border-color .2s; white-space: nowrap;
}
.chip:hover { background: #2a2a2a; color: #fff; border-color: #555; }
.chip--active { background: var(--clr-yellow); color: #1a1a1a; border-color: var(--clr-yellow); font-weight: 700; }
.chip--active:hover { background: #d4a800; border-color: #d4a800; color: #1a1a1a; }
.chip__count { background: rgba(0,0,0,.25); border-radius: 999px; padding: .05rem .4rem; font-size: .7rem; }
.chip--active .chip__count { background: rgba(0,0,0,.2); }
.chip--coming-soon { opacity: .75; font-style: italic; }
.chip--coming-soon::after { content: ' ✦'; font-size: .65rem; vertical-align: super; opacity: .6; }

/* Sub-category chips (second row, shown inside a category) */
.subcategory-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: -.75rem; margin-bottom: 1.25rem; padding-left: .15rem; }
.chip--sub {
    padding: .3rem .75rem; font-size: .8rem; border-color: #2e2e2e;
    background: #1e1e1e; color: #ccc;
}
.chip--sub:hover { background: #2a2a2a; color: #fff; border-color: #555; }
.chip--sub.chip--active { background: var(--clr-yellow); color: #1a1a1a; border-color: var(--clr-yellow); font-weight: 700; }
.chip--sub.chip--active:hover { background: #d4a800; border-color: #d4a800; }

/* Toolbar */
.shop-toolbar {
    display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.5rem; padding: 1rem 1.25rem;
    background: #1e1e1e; border: 1px solid #2e2e2e; border-radius: 8px;
}
.shop-toolbar__filters, .shop-toolbar__right { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .75rem; }
.filter-label {
    display: flex; flex-direction: column; gap: .25rem; font-size: .75rem;
    color: #aaa; font-weight: 500; text-transform: uppercase; letter-spacing: .04em;
}
.filter-label select {
    background: #2a2a2a; border: 1px solid #3a3a3a; color: #fff;
    padding: .4rem .7rem; border-radius: 5px; font-size: .85rem; cursor: pointer; min-width: 130px;
}
.filter-label select:focus { outline: none; border-color: var(--yellow); }
.shop-toolbar__count { font-size: .85rem; color: #aaa; align-self: flex-end; padding-bottom: .45rem; }
.btn-clear-filters {
    align-self: flex-end; padding: .4rem .75rem; background: transparent;
    border: 1px solid #e74c3c; color: #e74c3c; border-radius: 5px; font-size: .8rem;
    text-decoration: none; transition: background .2s, color .2s;
}
.btn-clear-filters:hover { background: #e74c3c; color: #fff; }

/* Product grid */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem; margin-bottom: 2.5rem;
}
.product-card {
    background: #1e1e1e; border: 1px solid #2e2e2e; border-radius: 8px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: border-color .2s, transform .2s;
}
.product-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.product-card__img-wrap { display: block; aspect-ratio: 4/3; overflow: hidden; background: #2a2a2a; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: .72rem; color: var(--yellow); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; }
.product-card__sub { color: #888; }
.product-card__name { font-size: .95rem; font-weight: 600; margin-bottom: .4rem; line-height: 1.35; }
.product-card__name a { color: #fff; text-decoration: none; }
.product-card__name a:hover { color: var(--yellow); }
.product-card__desc { font-size: .8rem; color: #999; margin-bottom: .75rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.product-card__price { font-size: .85rem; color: #ccc; }
.product-card__price strong { color: var(--yellow); font-size: 1rem; }
.btn--sm { padding: .35rem .75rem; font-size: .8rem; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin-top: 2rem; }
.pagination__btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2.2rem; height: 2.2rem; padding: 0 .6rem; border: 1px solid #3a3a3a;
    border-radius: 5px; background: #1e1e1e; color: #ccc; font-size: .85rem;
    text-decoration: none; transition: background .2s, color .2s, border-color .2s;
}
.pagination__btn:hover { background: #2a2a2a; color: #fff; border-color: #555; }
.pagination__btn--active { background: var(--yellow); color: #1a1a1a; border-color: var(--yellow); font-weight: 700; }
.pagination__ellipsis { display: inline-flex; align-items: center; color: #666; padding: 0 .25rem; }

/* Empty state */
.shop-empty { text-align: center; padding: 4rem 1rem; color: #888; }
.shop-empty a { color: var(--yellow); }
.shop-coming-soon { text-align: center; padding: 5rem 1rem; }
.shop-coming-soon__title { font-size: 1.4rem; font-weight: 700; color: #ccc; margin-bottom: .5rem; }
.shop-coming-soon__sub { font-size: 2rem; font-weight: 800; color: var(--clr-yellow); letter-spacing: .05em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL — Phase 4
   ═══════════════════════════════════════════════════════════════════════ */

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-top: 2.5rem; padding-bottom: 4rem; align-items: start; }
.product-detail__image-col { min-width: 0; overflow: hidden; }
.product-detail__info-col { min-width: 0; overflow: visible; }
@media (max-width: 768px) { .product-detail { grid-template-columns: 1fr; gap: 1.5rem; } }
.product-detail__img-wrap { background: #1e1e1e; border: 1px solid #2e2e2e; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.product-detail__img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 4px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; text-decoration: none; }
.badge--type { background: #2a2a2a; color: #aaa; border: 1px solid #3a3a3a; }
.badge--cat  { background: var(--clr-yellow); color: #1a1a1a; }
.badge--cat:hover { background: #d4a800; }
.badge--sub  { background: #2a2a2a; color: #ccc; border: 1px solid #3a3a3a; }
.product-detail__name { font-size: 1.75rem; font-weight: 700; margin-bottom: .75rem; line-height: 1.25; }
.product-detail__short-desc { color: #bbb; margin-bottom: 1rem; font-size: .95rem; line-height: 1.6; }
.product-detail__from-price { font-size: 1.1rem; color: #ccc; margin-bottom: 1.5rem; }
.product-detail__from-price strong { color: var(--yellow); font-size: 1.4rem; }
.product-detail__price-note { font-size: .8rem; color: #888; margin-left: .5rem; }
.product-detail__sizes { margin-bottom: 1.75rem; }
.product-detail__sizes-title { font-size: 1rem; font-weight: 600; margin-bottom: .75rem; color: #ddd; text-transform: uppercase; letter-spacing: .05em; }
.sizes-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.sizes-table th { background: #2a2a2a; color: #aaa; text-align: left; padding: .5rem .75rem; font-weight: 600; text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; border-bottom: 1px solid #3a3a3a; }
.sizes-table td { padding: .5rem .75rem; border-bottom: 1px solid #2a2a2a; color: #ccc; }
.sizes-table tr:last-child td { border-bottom: none; }
.sizes-table tr:hover td { background: #1e1e1e; }
.sizes-table__price { color: var(--yellow); font-weight: 600; }
.has-doors-badge { display: inline-block; padding: .1rem .45rem; border-radius: 3px; font-size: .72rem; font-weight: 600; }
.has-doors-badge--yes { background: #1a3a1a; color: #4caf50; }
.has-doors-badge--no  { background: #3a1a1a; color: #e57373; }
.product-detail__cart-section { margin-bottom: 1.5rem; }
.btn--lg { padding: .75rem 2rem; font-size: 1rem; border-radius: 6px; }
.product-detail__configurator-note { font-size: .8rem; color: #888; margin-top: .5rem; }
.product-detail__long-desc { border-top: 1px solid #2e2e2e; padding-top: 1.25rem; margin-top: 1.25rem; }
.product-detail__long-desc h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: #aaa; margin-bottom: .75rem; }
.product-detail__long-desc div { font-size: .9rem; color: #bbb; line-height: 1.65; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; font-size: .82rem; color: #aaa; margin-top: .5rem; }
.breadcrumb a { color: #ccc; text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb__sep { color: #666; }
.breadcrumb__current { color: var(--yellow); }


/* ═══════════════════════════════════════════════════════════════════════
   CONFIGURATOR — Phase 5
   ═══════════════════════════════════════════════════════════════════════ */
.cfg-loading{display:flex;align-items:center;gap:.75rem;padding:1.5rem 0;color:#888;font-size:.9rem}
.cfg-loading__spinner{display:inline-block;width:1.1rem;height:1.1rem;border:2px solid #444;border-top-color:var(--clr-yellow,#f5c518);border-radius:50%;animation:cfg-spin .7s linear infinite}
@keyframes cfg-spin{to{transform:rotate(360deg)}}
.cfg-error{color:#e57373;padding:1rem 0;font-size:.9rem}
/* Finish-data-missing notice */
.cfg-finish-notice{display:none;margin:.75rem 0;padding:.6rem 1rem;background:rgba(255,255,255,.06);border-left:3px solid var(--clr-yellow);border-radius:4px;font-size:.85rem;color:#bbb;line-height:1.4}
.cfg-finish-notice--visible{display:block}

.cfg-step{margin-bottom:1.75rem;padding-bottom:1.75rem;border-bottom:1px solid #2a2a2a}
.cfg-step:last-of-type{border-bottom:none}
.cfg-step--hidden{display:none!important}
.cfg-step__header{display:flex;align-items:center;gap:.6rem;margin-bottom:1rem}
.cfg-step__num{display:inline-flex;align-items:center;justify-content:center;width:1.6rem;height:1.6rem;border-radius:50%;background:var(--clr-yellow,#f5c518);color:#1a1a1a;font-size:.72rem;font-weight:800;flex-shrink:0}
.cfg-step__title{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:#ccc;margin:0}
.cfg-tiles{display:flex;flex-wrap:wrap;gap:.5rem}
.cfg-tile{display:flex;flex-direction:column;align-items:center;gap:.3rem;padding:.6rem .8rem;min-width:5rem;max-width:10rem;background:#1e1e1e;border:1.5px solid #333;border-radius:7px;cursor:pointer;text-align:center;transition:border-color .15s,background .15s,box-shadow .15s;font-family:inherit;color:#ccc;position:relative}
.cfg-tile:hover{border-color:#888;background:#252525}
.cfg-tile--active{border-color:var(--clr-yellow,#f5c518)!important;background:#1e1c0a;box-shadow:0 0 0 2px rgba(245,197,24,.25);color:#fff}
.cfg-tile--active::after{content:'';position:absolute;top:.3rem;right:.3rem;width:.55rem;height:.55rem;border-radius:50%;background:var(--clr-yellow,#f5c518)}
.cfg-tile--placeholder{border-style:dashed;border-color:#444;color:#888;font-style:italic}
.cfg-tile--placeholder.cfg-tile--active{border-style:solid;color:#fff}
.cfg-tile__img{width:3rem;height:3rem;object-fit:cover;border-radius:4px;background:#2a2a2a}
.cfg-tile__swatch{display:inline-block;width:1.4rem;height:1.4rem;border-radius:50%;margin-bottom:.1rem;flex-shrink:0}
.cfg-tile__label{font-size:.78rem;font-weight:600;line-height:1.3;display:flex;align-items:center;gap:.35rem;justify-content:center}
.cfg-tile__sub{font-size:.7rem;color:var(--clr-yellow,#f5c518);font-weight:600}
.cfg-tile--placeholder .cfg-tile__sub{color:#666}
/* Phase 10: swatch colour slider */
.cfg-colour-slider{position:relative;width:100%;max-width:100%;overflow:visible;padding:0 2.2rem;box-sizing:border-box}
.cfg-colour-slider__track{display:flex;flex-wrap:nowrap;gap:.75rem;overflow-x:auto;overflow-y:visible;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;padding:50px .1rem 50px;margin-top:-50px;margin-bottom:-50px;scrollbar-width:none;-ms-overflow-style:none;align-items:center;width:100%;min-width:0}
.cfg-colour-slider__track::-webkit-scrollbar{display:none}
.cfg-tile--swatch{flex:0 0 80px;width:80px;height:80px;min-width:72px;max-width:96px;padding:0;overflow:hidden;border-radius:6px;aspect-ratio:1;position:relative;scroll-snap-align:start;border:1.5px solid #333;background:#1e1e1e;cursor:pointer;transition:border-color .15s,box-shadow .15s;flex-shrink:0}
.cfg-tile--swatch .cfg-tile__img{width:100%;height:100%;object-fit:cover;border-radius:0;background:#1a1a1a;display:block}
.cfg-tile--swatch .cfg-tile__label{display:none}
.cfg-tile--swatch:hover{border-color:#888}
.cfg-tile--swatch.cfg-tile--active{border-color:var(--clr-yellow,#f5c518)!important;box-shadow:0 0 0 2px var(--clr-yellow,#f5c518)}
.cfg-tile--swatch.cfg-tile--active::after{content:'';position:absolute;top:.25rem;right:.25rem;width:.5rem;height:.5rem;border-radius:50%;background:var(--clr-yellow,#f5c518)}
/* Arrow buttons */
.cfg-slider-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:2;width:2rem;height:2rem;border-radius:50%;background:#222;border:1.5px solid #444;color:#ccc;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s,border-color .15s,opacity .15s;padding:0;font-size:.9rem;line-height:1}
.cfg-slider-btn:hover{background:#333;border-color:#888;color:#fff}
.cfg-slider-btn--prev{left:0}
.cfg-slider-btn--next{right:0}
.cfg-slider-btn:disabled,.cfg-slider-btn[disabled]{opacity:.25;cursor:default}
/* Swatch card: colour name heading above thumbnail */
.cfg-swatch-card{display:flex;flex-direction:column;align-items:center;gap:.35rem;flex:0 0 auto;scroll-snap-align:start;padding:.5rem .45rem .55rem;background:#1e1e1e;border:1.5px solid #333;border-radius:7px;transition:border-color .15s,background .15s,box-shadow .15s;min-width:76px;max-width:104px;position:relative;cursor:pointer}
.cfg-swatch-card{transform-origin:center center}.cfg-swatch-card:hover{border-color:#888;background:#252525;transform:scale(1.45);z-index:999;position:relative}
.cfg-swatch-card--active{border-color:var(--clr-yellow,#f5c518)!important;background:#1e1c0a;box-shadow:0 0 0 2px rgba(245,197,24,.25)}
.cfg-swatch-card--active::after{content:'';position:absolute;top:.3rem;right:.3rem;width:.5rem;height:.5rem;border-radius:50%;background:var(--clr-yellow,#f5c518)}
.cfg-swatch-card__name{font-size:.72rem;font-weight:600;color:#ccc;text-align:center;line-height:1.3;width:100%;word-break:break-word}
.cfg-swatch-card--active .cfg-swatch-card__name{color:#fff}
.cfg-swatch-card .cfg-tile--swatch{flex:none;width:72px;height:72px;min-width:unset;max-width:unset;border:none!important;border-radius:5px;scroll-snap-align:unset;flex-shrink:0;pointer-events:auto;box-shadow:none!important}
.cfg-swatch-card .cfg-tile--swatch::after{display:none!important}
@media(max-width:768px){.cfg-tile--swatch{flex:0 0 72px;width:72px;height:72px;min-width:64px}.cfg-swatch-card .cfg-tile--swatch{width:64px;height:64px}}
@media(max-width:480px){.cfg-tile--swatch{flex:0 0 64px;width:64px;height:64px;min-width:56px}.cfg-slider-btn--prev{left:0}.cfg-slider-btn--next{right:0}.cfg-swatch-card .cfg-tile--swatch{width:56px;height:56px}}
.cfg-cart-section{margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid #2a2a2a}
.cfg-price-row{display:flex;align-items:baseline;gap:.75rem;margin-bottom:1rem}
.cfg-price-label{font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:#888}
.cfg-price-value{font-size:1.6rem;font-weight:700;color:var(--clr-yellow);transition:color .2s}
.cfg-price-value.cfg-price--loaded{color:#fff}
.cfg-qty-row{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.cfg-qty-label{font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:#888}
.cfg-qty-stepper{display:flex;align-items:center;border:1px solid #3a3a3a;border-radius:6px;overflow:hidden}
.cfg-qty-stepper__btn{background:#1e1e1e;color:#fff;border:none;width:36px;height:36px;font-size:1.2rem;line-height:1;cursor:pointer;transition:background .15s;flex-shrink:0}
.cfg-qty-stepper__btn:hover{background:#2e2e2e}
.cfg-qty-stepper__input{width:48px;height:36px;background:#111;color:#fff;border:none;border-left:1px solid #3a3a3a;border-right:1px solid #3a3a3a;text-align:center;font-size:1rem;font-weight:600;-moz-appearance:textfield}
.cfg-qty-stepper__input::-webkit-outer-spin-button,.cfg-qty-stepper__input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.btn--added{background:var(--clr-yellow)!important;color:#111!important;opacity:1!important}
.cfg-validation{font-size:.8rem;color:#e57373;margin-top:.5rem;min-height:1.1rem;opacity:0;transition:opacity .2s}
.cfg-validation--visible{opacity:1}
@media(max-width:480px){.cfg-tiles{gap:.4rem}.cfg-tile{min-width:4.5rem;padding:.5rem .6rem}.cfg-tile__label{font-size:.72rem}}
/* Dimension input for quartz/granite worktops */
.cfg-step--dimensions{}
.cfg-dim__info{font-size:.85rem;color:#aaa;margin:0 0 1rem;line-height:1.5}
.cfg-dim__info strong{color:#fff}
.cfg-dim__row{display:flex;align-items:flex-end;gap:.75rem;flex-wrap:wrap;margin-bottom:.75rem}
.cfg-dim__group{display:flex;flex-direction:column;gap:.35rem;flex:1;min-width:120px;max-width:180px}
.cfg-dim__label{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.07em;color:#888}
.cfg-dim__input{background:#1e1e1e;border:1.5px solid #333;border-radius:7px;color:#fff;font-size:1rem;font-weight:600;padding:.55rem .75rem;width:100%;box-sizing:border-box;font-family:inherit;transition:border-color .15s}
.cfg-dim__input:focus{outline:none;border-color:var(--clr-yellow,#f5c518)}
.cfg-dim__input::placeholder{color:#555;font-weight:400}
.cfg-dim__sep{font-size:1.4rem;color:#555;padding-bottom:.5rem;flex-shrink:0;align-self:flex-end;padding-bottom:.65rem}
.cfg-dim__calc{font-size:.85rem;color:var(--clr-yellow,#f5c518);font-weight:600;margin:.25rem 0 0;min-height:1.2rem}
.cfg-dim__error{font-size:.8rem;color:#e57373;margin:.25rem 0 0;min-height:1.1rem}
@media(max-width:480px){.cfg-dim__row{gap:.5rem}.cfg-dim__group{min-width:100px}.cfg-dim__input{font-size:.9rem}}

/* ════════════════════════════════════════════════════════════════
   CART PAGE
════════════════════════════════════════════════════════════════ */
.cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:4rem 1rem;text-align:center;color:#888}
.cart-empty h2{font-size:1.5rem;color:#fff;margin:0}
.cart-empty p{max-width:420px;margin:0}
/* Cart page layout */
.cart-page-layout{display:grid;grid-template-columns:1fr 320px;gap:2rem;align-items:start}
@media(max-width:860px){.cart-page-layout{grid-template-columns:1fr}}

/* Cart table */
.cart-table-wrap{background:#141414;border:1px solid #2a2a2a;border-radius:var(--radius);overflow:hidden}
.cart-table{width:100%;border-collapse:collapse}
.cart-table thead tr{border-bottom:2px solid #2a2a2a}
.cart-table th{padding:.85rem 1rem;font-size:.78rem;font-weight:700;color:#bbb;text-transform:uppercase;letter-spacing:.06em;text-align:left;background:#111}
.cart-table__col-price,.cart-table__col-qty,.cart-table__col-subtotal{text-align:center;white-space:nowrap}
.cart-table__row{border-bottom:1px solid #222;transition:opacity .2s}
.cart-table__row:last-child{border-bottom:none}
.cart-table td{padding:1.1rem 1rem;vertical-align:middle}
.cart-table__cell-remove{text-align:center;width:40px}
.cart-table__remove-btn{background:transparent;border:none;cursor:pointer;color:#e57373;font-size:1.4rem;line-height:1;padding:2px 6px;border-radius:4px;transition:color .15s}
.cart-table__remove-btn:hover{color:#ff5252}
.cart-table__product-name{font-weight:700;color:#fff;text-decoration:none;display:block;margin-bottom:.3rem;font-size:.95rem}
.cart-table__product-name:hover{color:var(--clr-yellow)}
.cart-table__specs{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:.15rem .6rem}
.cart-table__specs li{font-size:.75rem;color:#777}
.cart-table__cell-price{text-align:center}
.cart-item__unit-price{font-size:.92rem;color:#ccc;font-weight:600}
.cart-table__cell-qty{text-align:center}
.cart-table__qty-wrap{display:inline-flex;align-items:center;gap:.4rem;background:#1a1a1a;border:1px solid #2a2a2a;border-radius:var(--radius);padding:.2rem .4rem}
.cart-qty-btn{width:26px;height:26px;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:700;color:#fff;background:transparent;border:none;cursor:pointer;border-radius:4px;transition:background .15s}
.cart-qty-btn:hover{background:#2a2a2a;color:var(--clr-yellow)}
.cart-qty-value{min-width:22px;text-align:center;font-size:.88rem;font-weight:600;color:#fff}
.cart-table__cell-subtotal{text-align:center}
.cart-item__total-price{font-size:.95rem;font-weight:700;color:#fff}
.cart-table__footer{padding:1rem 1.25rem;border-top:1px solid #2a2a2a}
@media(max-width:640px){.cart-table th.cart-table__col-price,.cart-table td.cart-table__cell-price{display:none}}

/* Cart totals sidebar */
.cart-totals-box{background:#141414;border:1px solid #2a2a2a;border-radius:var(--radius);padding:1.5rem;position:sticky;top:100px}
.cart-totals-box__title{font-size:.9rem;font-weight:700;color:#fff;margin:0 0 1.25rem;padding-bottom:.75rem;border-bottom:1px solid #2a2a2a;text-transform:uppercase;letter-spacing:.05em}
.cart-totals-box__row{display:flex;justify-content:space-between;align-items:flex-start;font-size:.88rem;color:#bbb;margin-bottom:.9rem;font-weight:600}
.cart-totals-box__tbd{font-size:.78rem;color:#666;text-align:right;font-weight:400}
.cart-totals-box__divider{border:none;border-top:1px solid #2a2a2a;margin:.75rem 0}
.cart-totals-box__row--total{font-size:1rem;font-weight:700;color:#fff;margin-bottom:1.25rem}
.cart-totals-box__checkout-btn{width:100%;text-align:center;display:block}


/* ════════════════════════════════════════════════════════════════
   PHASE 7 — CHECKOUT, ORDER CONFIRMATION, ADMIN
════════════════════════════════════════════════════════════════ */

/* ── Checkout layout ─────────────────────────────────────────── */
.section--checkout{padding:3rem 0 5rem}
.co-layout{display:grid;grid-template-columns:1fr 420px;gap:2.5rem;align-items:start}
@media(max-width:960px){.co-layout{grid-template-columns:1fr}}

/* Checkout card panels */
.co-card{background:#141414;border:1px solid #2a2a2a;border-radius:var(--radius);padding:1.75rem;margin-bottom:1.5rem}
.co-card:last-child{margin-bottom:0}
.co-card__title{font-family:var(--font-head);font-size:1rem;font-weight:700;color:#fff;margin:0 0 1.25rem;padding-bottom:.75rem;border-bottom:1px solid #2a2a2a;text-transform:uppercase;letter-spacing:.05em}
.co-card__title--sm{font-size:.88rem;margin-bottom:.85rem}
.co-order-box .co-card{position:sticky;top:100px}

/* Form fields */
.form-row{margin-bottom:1rem}
.form-row--2col{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:600px){.form-row--2col{grid-template-columns:1fr}}
.form-group{display:flex;flex-direction:column;gap:.35rem}
.form-group label{font-size:.8rem;font-weight:600;color:#bbb;text-transform:uppercase;letter-spacing:.04em}
.form-group input,.form-group select,.form-group textarea{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:var(--radius);color:#fff;padding:.65rem .85rem;font-size:.92rem;font-family:var(--font-body);transition:border-color .2s;width:100%;box-sizing:border-box}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--clr-yellow)}
.form-group select option{background:#1a1a1a;color:#fff}
.form-group.has-error input,.form-group.has-error select,.form-group.has-error textarea{border-color:#e57373}
.form-error{font-size:.78rem;color:#e57373;margin:0}
.form-hint{font-size:.75rem;color:#666;margin:.2rem 0 0}
.required{color:var(--clr-red)}
.optional{color:#666;font-weight:400;font-size:.75rem}
.alert--error{background:#2a1010;border:1px solid #e57373;border-radius:var(--radius);color:#e57373;padding:1rem 1.25rem;margin-bottom:1.5rem;font-size:.9rem}

/* Your Order table */
.co-order-table{width:100%;border-collapse:collapse;margin-bottom:1.25rem}
.co-order-table th{font-size:.75rem;font-weight:700;color:#bbb;text-transform:uppercase;letter-spacing:.05em;padding:.5rem .5rem .75rem;border-bottom:2px solid #2a2a2a;text-align:left}
.co-order-table th.co-order-table__subtotal{text-align:right}
.co-order-table td{padding:.7rem .5rem;border-bottom:1px solid #222;vertical-align:top;font-size:.86rem;color:#ccc}
.co-order-table tbody tr:last-child td{border-bottom:none}
.co-order-table__name{display:block;font-weight:600;color:#fff;margin-bottom:.2rem;font-size:.88rem}
.co-order-table__config{display:block;font-size:.75rem;color:#777;margin-bottom:.15rem}
.co-order-table__qty{display:block;font-size:.75rem;color:#666}
.co-order-table td.co-order-table__subtotal{text-align:right;font-weight:700;color:#fff;white-space:nowrap}
.co-order-table tfoot th,.co-order-table tfoot td{padding:.6rem .5rem;font-size:.86rem;color:#bbb;border-bottom:1px solid #222}
.co-order-table tfoot td{text-align:right;font-weight:600;color:#ccc}
.co-order-table__row-subtotal th,.co-order-table__row-subtotal td{border-top:2px solid #2a2a2a}
.co-order-table__row-total th,.co-order-table__row-total td{font-size:1rem;font-weight:700;color:#fff;border-top:2px solid #2a2a2a;border-bottom:none}
.co-order-table__tbd{font-size:.78rem;color:#555;font-style:italic}

/* Payment method selector */
.co-payment-method{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:var(--radius);margin-bottom:1.25rem;overflow:hidden}
.co-payment-method__option{display:flex;align-items:center;gap:.75rem;padding:.85rem 1rem;border-bottom:1px solid #2a2a2a}
.co-payment-method__option--active{background:#1f1f1f}
.co-payment-method__radio{width:16px;height:16px;border-radius:50%;border:2px solid var(--clr-yellow);background:var(--clr-yellow);flex-shrink:0;position:relative}
.co-payment-method__radio::after{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:6px;height:6px;background:#111;border-radius:50%}
.co-payment-method__label{display:flex;align-items:center;gap:.6rem;font-weight:700;color:#fff;font-size:.9rem}
.co-payment-method__logo{height:20px;vertical-align:middle}
.co-payment-method__desc{padding:.75rem 1rem;font-size:.8rem;color:#888;line-height:1.5}

/* Place order */
.co-place-order-btn{letter-spacing:.08em;font-size:.9rem}
.btn--full{width:100%;text-align:center;display:block}
.checkout-back-link{display:block;text-align:center;margin-top:.75rem;font-size:.8rem;color:#666;text-decoration:none}
.checkout-back-link:hover{color:var(--clr-yellow)}
/* Keep old checkout-section-title for any other templates */
.checkout-section-title{font-family:var(--font-head);font-size:1.2rem;font-weight:700;color:#fff;margin:0 0 1.25rem;padding-bottom:.6rem;border-bottom:1px solid #2a2a2a}

/* ── Order confirmation ───────────────────────────────────────── */
.section--order-confirm{padding:3rem 0 5rem}
.container--narrow{max-width:900px;margin:0 auto}
.order-confirm__banner{display:flex;gap:1.25rem;align-items:flex-start;background:#141414;border:1px solid #2a2a2a;border-radius:var(--radius);padding:1.5rem;margin-bottom:2rem}
.order-confirm__check{flex-shrink:0;width:52px;height:52px;background:var(--clr-yellow);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#111}
.order-confirm__title{font-family:var(--font-heading);font-size:1.35rem;font-weight:700;color:#fff;margin:0 0 .4rem}
.order-confirm__subtitle{font-size:.9rem;color:#bbb;margin:0}
.text-yellow{color:var(--clr-yellow)}
.order-confirm__grid{display:grid;grid-template-columns:1fr 320px;gap:2rem;align-items:start}
@media(max-width:860px){.order-confirm__grid{grid-template-columns:1fr}}
.order-confirm__card{background:#141414;border:1px solid #2a2a2a;border-radius:var(--radius);padding:1.25rem;margin-bottom:1rem}
.order-confirm__card--items{padding:0;overflow:hidden}
.order-confirm__card-title{font-family:var(--font-heading);font-size:.95rem;font-weight:700;color:#fff;margin:0 0 .85rem;text-transform:uppercase;letter-spacing:.06em}
.order-confirm__card--items .order-confirm__card-title{padding:1.25rem 1.25rem 0}
.order-confirm__address{font-style:normal;font-size:.88rem;color:#bbb;line-height:1.7;margin:0}
.order-confirm__phone{font-size:.82rem;color:#bbb;margin:.5rem 0 0;display:flex;align-items:center;gap:.4rem}
.order-confirm__notes{font-size:.82rem;color:#777;margin:.5rem 0 0;font-style:italic}
.order-confirm__card--eft{border-color:#2a2a1a}
.order-confirm__eft-intro{font-size:.85rem;color:#bbb;margin:0 0 .75rem}
.order-confirm__eft-note{font-size:.78rem;color:#777;margin:.75rem 0 0;font-style:italic}
.eft-table{width:100%;border-collapse:collapse;font-size:.85rem}
.eft-table td{padding:.35rem .5rem;border-bottom:1px solid #222;color:#bbb}
.eft-table td:first-child{color:#777;width:40%}
.eft-table tr:last-child td{border-bottom:none}
.order-confirm__actions{margin-top:2rem;text-align:center}

/* Order table (shared by confirmation + admin) */
.order-table{width:100%;border-collapse:collapse;font-size:.88rem}
.order-table th{background:#1a1a1a;color:#999;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;padding:.65rem 1rem;text-align:left;border-bottom:1px solid #2a2a2a}
.order-table td{padding:.75rem 1rem;border-bottom:1px solid #1e1e1e;color:#ddd;vertical-align:top}
.order-table tfoot td{padding:.6rem 1rem;color:#bbb;font-size:.85rem;border-top:1px solid #2a2a2a;border-bottom:none}
.order-table__total-row td{font-weight:700;font-size:1rem;color:#fff;border-top:2px solid #2a2a2a}
.text-center{text-align:center}
.text-right{text-align:right}
.text-muted{color:#666}

/* ── Admin ───────────────────────────────────────────────────── */
.section--admin{padding:2.5rem 0 5rem}
.admin-toolbar{display:flex;justify-content:flex-end;margin-bottom:1.25rem;gap:.75rem}
.admin-table-wrap{overflow-x:auto;border-radius:var(--radius);border:1px solid #2a2a2a}
.admin-table{width:100%;border-collapse:collapse;font-size:.88rem}
.admin-table th{background:#1a1a1a;color:#999;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;padding:.65rem 1rem;text-align:left;border-bottom:1px solid #2a2a2a}
.admin-table td{padding:.75rem 1rem;border-bottom:1px solid #1e1e1e;color:#ddd;vertical-align:middle}
.admin-table tr:last-child td{border-bottom:none}
.admin-table tr:hover td{background:#161616}
.order-num{font-family:monospace;font-size:.82rem;color:var(--clr-yellow);background:#1a1a00;padding:.15rem .45rem;border-radius:4px}
.status-badge{display:inline-block;padding:.2rem .65rem;border-radius:20px;font-size:.72rem;font-weight:700;color:#111;text-transform:uppercase;letter-spacing:.05em}
.empty-state{text-align:center;padding:4rem 2rem;color:#555;font-size:.95rem}
.btn--outline--dark{background:transparent;border:1px solid #3a3a3a;color:#bbb;padding:.45rem .9rem;border-radius:var(--radius);font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;text-decoration:none;cursor:pointer;transition:border-color .2s,color .2s}
.btn--outline--dark:hover{border-color:var(--clr-yellow);color:var(--clr-yellow)}
.btn--sm{padding:.35rem .75rem;font-size:.75rem}

/* Admin packing slip */
.admin-actions{display:flex;gap:.75rem;margin-bottom:1.5rem;align-items:center}
.admin-packing-slip{background:#141414;border:1px solid #2a2a2a;border-radius:var(--radius);padding:2rem}
.slip-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.75rem;padding-bottom:1.25rem;border-bottom:1px solid #2a2a2a}
.slip-header__order-num{font-family:var(--font-heading);font-size:1.4rem;font-weight:800;color:var(--clr-yellow);margin:0 0 .25rem}
.slip-header__date{font-size:.82rem;color:#777;margin:0 0 .5rem}
.slip-customer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-bottom:1.75rem}
.slip-card{background:#1a1a1a;border:1px solid #222;border-radius:var(--radius);padding:1rem}
.slip-card__title{font-size:.75rem;font-weight:700;color:#999;text-transform:uppercase;letter-spacing:.06em;margin:0 0 .6rem}
.slip-card address{font-style:normal;font-size:.85rem;color:#bbb;line-height:1.65}
.slip-card p{font-size:.85rem;color:#bbb;margin:.2rem 0}
.slip-section-title{font-family:var(--font-heading);font-size:1rem;font-weight:700;color:#fff;margin:1.5rem 0 .75rem;text-transform:uppercase;letter-spacing:.05em}
.order-table--admin .cfg-mini-table{width:100%;border-collapse:collapse;font-size:.78rem}
.order-table--admin .cfg-mini-table td{padding:.15rem .3rem;color:#999;border:none}
.order-table--admin .cfg-mini-table .cfg-label{color:#666;width:80px;white-space:nowrap}

/* SEARCH OVERLAY */
#search-overlay{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center}
#search-overlay.search-overlay--open{display:flex}
.search-overlay__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.75)}
.search-overlay__box{position:relative;z-index:1;background:#222;border-radius:6px;padding:32px 24px;width:100%;max-width:560px;margin:0 24px}
.search-overlay__form{display:flex;gap:12px}
.search-overlay__input{flex:1;background:#1a1a1a;border:1px solid #444;color:#fff;font-size:1rem;padding:12px 16px;border-radius:4px;outline:none}
.search-overlay__input:focus{border-color:var(--clr-yellow)}
.search-overlay__submit{white-space:nowrap}
.search-overlay__close{position:absolute;top:10px;right:14px;font-size:1.4rem;color:#888;background:none;border:none;cursor:pointer;line-height:1}
.search-overlay__close:hover{color:#fff}
