/* ============================================================
   MADHURAJ CREATIONS - Premium Responsive CSS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --deep-burgundy:#8F5F4A; --warm-gold:#9B6B52; --light-gold:#CBB8A3;
  --champagne:#E4D7C8; --ivory:#F6F1EA; --charcoal:#2A2A2A; --slate:#3D3A36;
  --muted:#746F68; --border-light:#D8CABB; --white:#FFFFFF; --sage:#6F7E6A;
  --terracotta:#B56F55; --navy:#43516F;
  --font-display:'Playfair Display',Georgia,serif;
  --font-body:'Inter','Segoe UI',sans-serif;
  --section-py:80px; --container-max:1320px;
  --shadow-sm:0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg:0 16px 48px rgba(0,0,0,0.15);
  --transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h:72px; --topbar-h:38px;
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:var(--font-body);color:var(--charcoal);background:var(--ivory);line-height:1.7;overflow-x:hidden;}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;transition:var(--transition);}
ul{list-style:none;}
button{cursor:pointer;border:none;background:none;font-family:var(--font-body);}
input,textarea,select{font-family:var(--font-body);}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6{font-family:var(--font-display);font-weight:600;line-height:1.2;color:var(--charcoal);}
h1{font-size:clamp(1.8rem,4vw,3.2rem);}
h2{font-size:clamp(1.5rem,3vw,2.4rem);}
h3{font-size:clamp(1.1rem,2vw,1.7rem);}
p{color:var(--slate);}

/* ===== LAYOUT ===== */
.container{max-width:var(--container-max);margin:0 auto;padding:0 20px;}
.section{padding:var(--section-py) 0;}
.section-bg{background:var(--champagne);}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:32px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.flex{display:flex;align-items:center;}
.flex-between{display:flex;align-items:center;justify-content:space-between;}
.text-center{text-align:center;}
.w-100{width:100%;}
.d-none{display:none;}
.mt-16{margin-top:16px;}
.mt-32{margin-top:32px;}
.mt-48{margin-top:48px;}

/* ===== SECTION HEADERS ===== */
.section-header{text-align:center;margin-bottom:48px;}
.section-label{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--warm-gold);display:block;margin-bottom:10px;}
.section-header h2{font-style:italic;margin-bottom:12px;}
.section-header p{color:var(--muted);max-width:560px;margin:0 auto;font-size:15px;}
.ornament{display:flex;align-items:center;justify-content:center;gap:10px;margin:14px auto;}
.ornament::before,.ornament::after{content:'';height:1px;width:60px;}
.ornament::before{background:linear-gradient(to right,transparent,var(--warm-gold));}
.ornament::after{background:linear-gradient(to left,transparent,var(--warm-gold));}
.ornament-dot{width:6px;height:6px;background:var(--warm-gold);transform:rotate(45deg);display:inline-block;}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 28px;font-family:var(--font-body);font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;transition:var(--transition);cursor:pointer;border-radius:2px;white-space:nowrap;}
.btn-primary{background:var(--deep-burgundy);color:#fff;border:2px solid var(--deep-burgundy);}
.btn-primary:hover{background:#4A1515;border-color:#4A1515;transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn-gold{background:var(--warm-gold);color:#fff;border:2px solid var(--warm-gold);}
.btn-gold:hover{background:#B8832A;border-color:#B8832A;transform:translateY(-2px);}
.btn-outline{background:transparent;color:var(--charcoal);border:2px solid var(--charcoal);}
.btn-outline:hover{background:var(--charcoal);color:#fff;}
.btn-outline-light{background:transparent;color:#fff;border:2px solid rgba(255,255,255,0.7);}
.btn-outline-light:hover{background:rgba(255,255,255,0.1);}
.btn-sm{padding:8px 18px;font-size:11px;}
.btn-lg{padding:16px 36px;font-size:13px;}

/* ===== TOP BAR ===== */
.topbar{background:var(--charcoal);color:rgba(255,255,255,0.75);font-size:12px;height:var(--topbar-h);display:flex;align-items:center;}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;}
.topbar-left{display:flex;align-items:center;gap:20px;}
.topbar-left a,.topbar-right a{color:rgba(255,255,255,0.75);font-size:12px;}
.topbar-left a:hover,.topbar-right a:hover{color:var(--warm-gold);}
.topbar-left i,.topbar-right i{color:var(--warm-gold);margin-right:5px;font-size:11px;}
.topbar-right{display:flex;align-items:center;gap:16px;}

/* ===== SITE HEADER ===== */
.site-header{background:#fff;position:sticky;top:0;z-index:1000;box-shadow:0 2px 20px rgba(0,0,0,0.07);transition:var(--transition);}
.site-header.scrolled{box-shadow:0 4px 30px rgba(0,0,0,0.12);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;height:var(--header-h);}
.logo-img{height:50px;width:auto;}
.logo-name{font-family:var(--font-display);font-size:24px;font-weight:700;color:var(--deep-burgundy);display:block;letter-spacing:0.5px;}
.logo-tagline{font-size:9px;letter-spacing:3px;text-transform:uppercase;color:var(--warm-gold);font-weight:600;}

/* ===== DESKTOP NAV ===== */
.main-nav{flex:1;display:flex;justify-content:center;}
.main-nav>ul{display:flex;align-items:center;gap:4px;}
.main-nav>ul>li{position:relative;}
.main-nav a{font-size:12px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:var(--slate);padding:8px 12px;display:block;position:relative;}
.main-nav a::after{content:'';position:absolute;bottom:2px;left:12px;right:12px;height:2px;background:var(--warm-gold);transform:scaleX(0);transition:transform 0.3s ease;}
.main-nav a:hover::after,.main-nav a.active::after{transform:scaleX(1);}
.main-nav a:hover,.main-nav a.active{color:var(--deep-burgundy);}

/* DROPDOWN */
.has-dropdown{position:relative;}
.dropdown{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);background:#fff;min-width:210px;box-shadow:var(--shadow-lg);border-top:3px solid var(--warm-gold);opacity:0;visibility:hidden;transition:all 0.25s ease;z-index:999;}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;top:calc(100% + 4px);}
.dropdown a{display:block;padding:11px 20px;font-size:13px;font-weight:500;letter-spacing:0.3px;text-transform:none;color:var(--slate);border-bottom:1px solid var(--border-light);}
.dropdown a::after{display:none;}
.dropdown a:hover{color:var(--deep-burgundy);background:var(--champagne);padding-left:24px;}

/* ===== HEADER ACTIONS ===== */
.header-actions{display:flex;align-items:center;gap:4px;}
.header-icon{width:42px;height:42px;display:flex;align-items:center;justify-content:center;color:var(--slate);font-size:18px;border-radius:50%;transition:var(--transition);position:relative;background:none;}
.header-icon:hover{color:var(--deep-burgundy);background:var(--champagne);}
.cart-icon{position:relative;}
.cart-badge{position:absolute;top:-2px;right:-2px;background:var(--deep-burgundy);color:#fff;font-size:10px;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;pointer-events:none;}

/* ===== HAMBURGER BUTTON ===== */
.hamburger{display:none;flex-direction:column;justify-content:space-between;width:36px;height:28px;padding:3px 0;background:none;border:none;cursor:pointer;z-index:1010;position:relative;}
.hamburger-line{display:block;width:100%;height:2px;background:var(--charcoal);border-radius:2px;transition:all 0.35s cubic-bezier(0.4,0,0.2,1);transform-origin:center;}
.hamburger.active .hamburger-line:nth-child(1){transform:translateY(10px) rotate(45deg);}
.hamburger.active .hamburger-line:nth-child(2){opacity:0;transform:scaleX(0);}
.hamburger.active .hamburger-line:nth-child(3){transform:translateY(-10px) rotate(-45deg);}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:1099;opacity:0;visibility:hidden;transition:all 0.35s ease;backdrop-filter:blur(3px);}
.mobile-overlay.open{opacity:1;visibility:visible;}

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu{position:fixed;top:0;left:-100%;width:min(320px,90vw);height:100vh;background:#fff;z-index:1100;overflow-y:auto;transition:left 0.35s cubic-bezier(0.4,0,0.2,1);display:flex;flex-direction:column;}
.mobile-menu.open{left:0;}
.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid var(--border-light);flex-shrink:0;}
.mobile-menu-close{width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:var(--slate);font-size:20px;border-radius:50%;}
.mobile-menu-close:hover{background:var(--champagne);color:var(--deep-burgundy);}
.mobile-menu-body{flex:1;overflow-y:auto;padding:8px 0;}
.mobile-nav-link{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;font-size:15px;font-weight:600;color:var(--charcoal);border-bottom:1px solid var(--border-light);transition:var(--transition);width:100%;text-align:left;}
.mobile-nav-link:hover{color:var(--deep-burgundy);background:var(--champagne);}
.mobile-acc-btn{cursor:pointer;}
.mobile-acc-btn i{transition:transform 0.3s ease;font-size:12px;}
.mobile-acc-content{max-height:0;overflow:hidden;transition:max-height 0.4s ease;background:#FAFAF7;}
.mobile-acc-content a{display:block;padding:11px 24px 11px 36px;font-size:14px;color:var(--slate);border-bottom:1px solid var(--border-light);}
.mobile-acc-content a:hover{color:var(--deep-burgundy);}
.mobile-menu-footer{padding:20px 24px;border-top:1px solid var(--border-light);flex-shrink:0;}

/* ===== SEARCH OVERLAY ===== */
.search-overlay{position:fixed;inset:0;background:rgba(28,28,30,0.95);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all 0.3s ease;}
.search-overlay.open{opacity:1;visibility:visible;}
.search-overlay-inner{width:100%;max-width:660px;padding:24px;}
.search-close{position:fixed;top:24px;right:32px;color:#fff;font-size:28px;background:none;border:none;cursor:pointer;z-index:1;}
.search-input-wrap{display:flex;background:#fff;overflow:hidden;}
.search-input-wrap input{flex:1;padding:18px 20px;font-size:17px;border:none;outline:none;font-family:var(--font-body);}
.search-input-wrap button{padding:0 24px;background:var(--warm-gold);color:#fff;font-size:20px;border:none;cursor:pointer;flex-shrink:0;}

/* ===== HERO SLIDER ===== */
.hero-slider{position:relative;overflow:hidden;height:88vh;min-height:500px;}
.slider-track{display:flex;height:100%;transition:transform 0.85s cubic-bezier(0.77,0,0.175,1);}
.slide{min-width:100%;height:100%;position:relative;overflow:hidden;}
.slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.05);transition:transform 8s ease;}
.slide.active .slide-bg{transform:scale(1);}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(28,28,30,0.75) 0%,rgba(92,26,26,0.45) 60%,transparent 100%);}
.slide-content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;padding:0 8% 0 10%;color:#fff;max-width:860px;}
.slide-label{font-size:11px;letter-spacing:5px;text-transform:uppercase;color:var(--light-gold);margin-bottom:16px;opacity:0;transform:translateY(20px);transition:all 0.6s ease 0.3s;}
.slide.active .slide-label{opacity:1;transform:none;}
.slide-title{font-family:var(--font-display);font-size:clamp(2.2rem,6vw,5rem);font-weight:300;font-style:italic;line-height:1.1;margin-bottom:18px;opacity:0;transform:translateY(30px);transition:all 0.7s ease 0.5s;color:#fff;}
.slide.active .slide-title{opacity:1;transform:none;}
.slide-desc{font-size:clamp(14px,1.5vw,17px);max-width:500px;color:rgba(255,255,255,0.85);margin-bottom:32px;opacity:0;transform:translateY(20px);transition:all 0.6s ease 0.7s;}
.slide.active .slide-desc{opacity:1;transform:none;}
.slide-btns{display:flex;gap:14px;flex-wrap:wrap;opacity:0;transform:translateY(20px);transition:all 0.6s ease 0.9s;}
.slide.active .slide-btns{opacity:1;transform:none;}
.slider-dots{position:absolute;bottom:32px;left:10%;display:flex;gap:8px;z-index:10;}
.slider-dot{width:28px;height:3px;background:rgba(255,255,255,0.4);cursor:pointer;transition:var(--transition);}
.slider-dot.active{background:var(--warm-gold);width:52px;}
.slider-arrow{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;background:rgba(255,255,255,0.1);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.3);color:#fff;font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;transition:var(--transition);}
.slider-arrow:hover{background:var(--warm-gold);border-color:var(--warm-gold);}
.slider-prev{left:24px;}.slider-next{right:24px;}

/* ===== FEATURES BAR ===== */
.features-bar{background:var(--champagne);padding:0;border-bottom:1px solid var(--border-light);}
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.feature-item{display:flex;align-items:center;gap:14px;padding:22px 24px;border-right:1px solid var(--border-light);}
.feature-item:last-child{border-right:none;}
.feature-icon{width:44px;height:44px;background:rgba(201,150,59,0.12);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.feature-icon i{color:var(--warm-gold);font-size:18px;}
.feature-title{font-size:13px;font-weight:700;letter-spacing:0.5px;margin-bottom:2px;}
.feature-desc{font-size:12px;color:var(--muted);}

/* ===== PRODUCT CARD ===== */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.product-card{background:#fff;position:relative;overflow:hidden;transition:var(--transition);box-shadow:var(--shadow-sm);}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-5px);}
.product-card-img{position:relative;overflow:hidden;aspect-ratio:3/4;background:var(--champagne);}
.product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease;}
.product-card:hover .product-card-img img{transform:scale(1.07);}
.product-badges{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:5px;z-index:2;}
.badge{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:4px 9px;}
.badge-sale{background:var(--deep-burgundy);color:#fff;}
.badge-new{background:var(--sage);color:#fff;}
.badge-hot{background:var(--terracotta);color:#fff;}
.product-actions{position:absolute;top:10px;right:10px;display:flex;flex-direction:column;gap:7px;z-index:2;opacity:0;transform:translateX(10px);transition:var(--transition);}
.product-card:hover .product-actions{opacity:1;transform:none;}
.action-btn{width:36px;height:36px;background:#fff;display:flex;align-items:center;justify-content:center;font-size:15px;color:var(--slate);border-radius:50%;box-shadow:var(--shadow-sm);transition:var(--transition);}
.action-btn:hover,.action-btn.active{background:var(--deep-burgundy);color:#fff;}
.product-card-body{padding:18px 18px 22px;}
.product-cat{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--warm-gold);margin-bottom:6px;font-weight:600;}
.product-name{font-family:var(--font-display);font-size:17px;font-weight:600;margin-bottom:10px;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;color:var(--charcoal);}
.product-name:hover{color:var(--deep-burgundy);}
.product-price{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:14px;}
.price-current{font-size:18px;font-weight:700;color:var(--deep-burgundy);}
.price-old{font-size:14px;color:var(--muted);text-decoration:line-through;}
.price-save{font-size:11px;color:var(--sage);font-weight:700;}
.btn-add-cart{width:100%;background:var(--charcoal);color:#fff;padding:11px;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;border:2px solid var(--charcoal);transition:var(--transition);cursor:pointer;font-family:var(--font-body);}
.btn-add-cart:hover{background:var(--deep-burgundy);border-color:var(--deep-burgundy);}
.btn-add-cart:disabled{opacity:0.5;cursor:not-allowed;}

/* ===== CATEGORY CARDS ===== */
.category-card{position:relative;overflow:hidden;aspect-ratio:3/4;cursor:pointer;display:block;}
.category-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.7s ease;}
.category-card:hover img{transform:scale(1.08);}
.category-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(28,28,30,0.85) 0%,transparent 60%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px 22px;color:#fff;}
.cat-placeholder{width:100%;height:100%;background:linear-gradient(135deg,var(--deep-burgundy),var(--warm-gold));display:flex;align-items:center;justify-content:center;}
.cat-placeholder i{font-size:52px;color:rgba(255,255,255,0.25);}
.category-name{font-family:var(--font-display);font-size:22px;font-weight:600;font-style:italic;margin-bottom:4px;}
.category-count{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--light-gold);}
.cat-arrow{position:absolute;right:18px;bottom:28px;width:38px;height:38px;background:var(--warm-gold);display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px;transform:translateX(60px);transition:var(--transition);}
.category-card:hover .cat-arrow{transform:none;}

/* ===== PAGE BANNER ===== */
.page-banner{position:relative;padding:70px 0;background:linear-gradient(135deg,var(--charcoal) 0%,var(--deep-burgundy) 100%);overflow:hidden;}
.page-banner::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 30% 50%,rgba(201,150,59,0.15) 0%,transparent 60%);}
.page-banner-content{position:relative;text-align:center;color:#fff;}
.page-banner h1{font-style:italic;margin-bottom:16px;color:#fff;}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:10px;font-size:13px;flex-wrap:wrap;}
.breadcrumb a{color:rgba(255,255,255,0.65);}
.breadcrumb a:hover{color:var(--light-gold);}
.breadcrumb span{color:rgba(255,255,255,0.4);}
.breadcrumb .current{color:var(--light-gold);}

/* ===== ABOUT SECTION ===== */
.about-img-wrap{position:relative;padding-bottom:40px;padding-right:40px;}
.about-img-main{position:relative;z-index:2;box-shadow:var(--shadow-lg);}
.about-img-accent{position:absolute;bottom:0;right:0;width:55%;z-index:3;border:6px solid #fff;box-shadow:var(--shadow-md);}
.about-text-wrap{display:flex;flex-direction:column;justify-content:center;gap:20px;}
.about-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:8px;}
.stat-item{text-align:center;padding:18px 12px;background:#fff;box-shadow:var(--shadow-sm);}
.stat-num{font-family:var(--font-display);font-size:32px;font-weight:700;color:var(--deep-burgundy);line-height:1;}
.stat-label{font-size:11px;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-top:4px;}

/* ===== TESTIMONIALS ===== */
.testimonials-section{background:var(--charcoal);color:#fff;}
.testimonials-section .section-header h2{color:#fff;}
.testimonials-section .section-header p{color:rgba(255,255,255,0.6);}
.testimonial-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);padding:36px 32px;}
.testimonial-quote{font-family:var(--font-display);font-size:56px;color:var(--warm-gold);line-height:0.8;margin-bottom:14px;}
.testimonial-stars{color:var(--warm-gold);font-size:13px;margin-bottom:14px;}
.testimonial-text{font-family:var(--font-display);font-size:17px;font-style:italic;color:rgba(255,255,255,0.85);line-height:1.8;margin-bottom:20px;}
.testimonial-author{display:flex;align-items:center;gap:14px;}
.author-avatar-ph{width:48px;height:48px;border-radius:50%;background:var(--warm-gold);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:18px;font-family:var(--font-display);flex-shrink:0;}
.author-name{font-weight:600;color:#fff;}
.author-loc{font-size:13px;color:rgba(255,255,255,0.5);}

/* ===== GALLERY ===== */
.gallery-grid{columns:3;column-gap:16px;}
.gallery-item{break-inside:avoid;margin-bottom:16px;position:relative;overflow:hidden;cursor:pointer;}
.gallery-item img{width:100%;display:block;transition:transform 0.5s ease;}
.gallery-item:hover img{transform:scale(1.05);}
.gallery-overlay{position:absolute;inset:0;background:rgba(92,26,26,0.65);display:flex;align-items:center;justify-content:center;opacity:0;transition:var(--transition);color:#fff;font-size:28px;}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-placeholder{width:100%;aspect-ratio:1;background:var(--champagne);display:flex;align-items:center;justify-content:center;}
.gallery-placeholder i{font-size:40px;color:var(--border-light);}

/* ===== LIGHTBOX ===== */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,0.95);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all 0.3s ease;}
.lightbox.open{opacity:1;visibility:visible;}
.lightbox-img-wrap{max-width:90vw;max-height:90vh;display:flex;align-items:center;justify-content:center;}
.lightbox-img-wrap img{max-width:90vw;max-height:88vh;object-fit:contain;box-shadow:0 20px 60px rgba(0,0,0,0.5);}
.lightbox-close{position:fixed;top:20px;right:28px;color:#fff;font-size:32px;cursor:pointer;z-index:1;background:rgba(255,255,255,0.1);width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.lightbox-prev,.lightbox-next{position:fixed;top:50%;transform:translateY(-50%);color:#fff;font-size:22px;cursor:pointer;background:rgba(255,255,255,0.1);width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:var(--transition);}
.lightbox-prev{left:20px;}.lightbox-next{right:20px;}
.lightbox-prev:hover,.lightbox-next:hover,.lightbox-close:hover{background:var(--warm-gold);}

/* ===== FORMS ===== */
.form-group{margin-bottom:22px;}
.form-label{display:block;font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--slate);margin-bottom:7px;}
.form-control{width:100%;padding:13px 16px;border:1px solid var(--border-light);background:#fff;font-family:var(--font-body);font-size:15px;color:var(--charcoal);transition:var(--transition);outline:none;border-radius:2px;}
.form-control:focus{border-color:var(--warm-gold);box-shadow:0 0 0 3px rgba(201,150,59,0.12);}
textarea.form-control{resize:vertical;min-height:130px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}

/* ===== ALERTS ===== */
.alert{padding:13px 18px;margin-bottom:18px;border-left:4px solid;font-size:14px;border-radius:2px;}
.alert-success{background:#f0fdf4;border-color:var(--sage);color:#1a5c36;}
.alert-error{background:#fef2f2;border-color:var(--deep-burgundy);color:var(--deep-burgundy);}
.alert-warning{background:#fffbeb;border-color:var(--warm-gold);color:#92400e;}
.alert-info{background:#eff6ff;border-color:var(--navy);color:var(--navy);}

/* ===== CART ===== */
.cart-table{width:100%;border-collapse:collapse;}
.cart-table th{padding:12px 18px;font-size:10px;letter-spacing:2px;text-transform:uppercase;font-weight:700;background:var(--champagne);border-bottom:2px solid var(--border-light);text-align:left;}
.cart-table td{padding:20px 18px;border-bottom:1px solid var(--border-light);vertical-align:middle;}
.cart-product-img{width:72px;height:72px;object-fit:cover;flex-shrink:0;}
.cart-product-info{display:flex;align-items:center;gap:16px;}
.qty-control{display:flex;align-items:center;border:1px solid var(--border-light);}
.qty-btn{width:34px;height:34px;display:flex;align-items:center;justify-content:center;font-size:17px;color:var(--slate);transition:var(--transition);}
.qty-btn:hover{background:var(--champagne);}
.qty-input{width:44px;height:34px;border:none;border-left:1px solid var(--border-light);border-right:1px solid var(--border-light);text-align:center;font-size:14px;font-weight:600;}
.cart-remove{color:var(--muted);font-size:18px;transition:var(--transition);}
.cart-remove:hover{color:var(--deep-burgundy);}

/* ===== ORDER TRACKING ===== */
.tracking-timeline{position:relative;padding:20px 0;}
.tracking-timeline::before{content:'';position:absolute;left:21px;top:0;bottom:0;width:2px;background:var(--border-light);}
.tracking-step{display:flex;gap:28px;align-items:flex-start;margin-bottom:28px;position:relative;}
.step-icon{width:44px;height:44px;border-radius:50%;background:var(--border-light);display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0;z-index:1;}
.step-icon.completed{background:var(--sage);color:#fff;}
.step-icon.current{background:var(--warm-gold);color:#fff;}
.step-content h4{font-weight:600;margin-bottom:3px;font-size:15px;}
.step-content p{color:var(--muted);font-size:13px;}
.step-date{font-size:12px;color:var(--muted);}

/* ===== CHECKOUT STEPS ===== */
.checkout-steps{display:flex;align-items:center;justify-content:center;gap:0;margin-bottom:44px;flex-wrap:wrap;}
.checkout-step{display:flex;align-items:center;gap:10px;}
.step-num{width:34px;height:34px;border-radius:50%;background:var(--border-light);color:var(--muted);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;transition:var(--transition);}
.checkout-step.active .step-num{background:var(--deep-burgundy);color:#fff;}
.checkout-step.done .step-num{background:var(--sage);color:#fff;}
.step-label{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:var(--muted);}
.checkout-step.active .step-label{color:var(--deep-burgundy);}
.step-line{width:56px;height:2px;background:var(--border-light);margin:0 10px;}

/* ===== DASHBOARD ===== */
.dashboard-layout{display:grid;grid-template-columns:250px 1fr;gap:28px;}
.dashboard-sidebar{background:#fff;padding:24px;height:fit-content;box-shadow:var(--shadow-sm);}
.user-avatar-circle{width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,var(--deep-burgundy),var(--warm-gold));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:24px;font-family:var(--font-display);margin:0 auto 12px;}
.dashboard-nav{display:flex;flex-direction:column;gap:3px;margin-top:12px;}
.dashboard-nav-link{display:flex;align-items:center;gap:10px;padding:11px 14px;font-size:14px;font-weight:500;color:var(--slate);border-radius:2px;transition:var(--transition);}
.dashboard-nav-link:hover,.dashboard-nav-link.active{background:var(--champagne);color:var(--deep-burgundy);}
.dashboard-nav-link i{width:18px;text-align:center;}
.dashboard-card{background:#fff;padding:28px;box-shadow:var(--shadow-sm);margin-bottom:20px;}
.dashboard-card h3{margin-bottom:20px;font-size:19px;padding-bottom:14px;border-bottom:1px solid var(--border-light);}

/* Stats Cards Grid */
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dashboard-stat-card {
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.dashboard-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.dashboard-stat-num {
  font-size: 36px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--deep-burgundy);
}
.dashboard-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Address Grid */
.dashboard-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.dashboard-address-card {
  padding: 24px;
  border: 1px solid var(--border-light);
  position: relative;
  background: var(--white);
  transition: var(--transition);
}
.dashboard-address-card.is-default {
  border: 2px solid var(--terracotta);
}

/* Order History Rows */
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  background: var(--white);
  margin-bottom: 12px;
  gap: 16px;
  flex-wrap: wrap;
  transition: var(--transition);
}
.order-row:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}

/* ===== STATUS BADGES ===== */
.status-badge{padding:4px 10px;font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;}
.status-pending{background:#fef3c7;color:#92400e;}
.status-confirmed{background:#dbeafe;color:#1e40af;}
.status-processing{background:#ede9fe;color:#5b21b6;}
.status-shipped,.status-delivered{background:#d1fae5;color:#065f46;}
.status-cancelled,.status-refunded{background:#fee2e2;color:#991b1b;}

/* ===== SIDEBAR FILTERS ===== */
.shop-layout{display:grid;grid-template-columns:270px 1fr;gap:36px;}
.shop-sidebar{position:sticky;top:calc(var(--header-h) + var(--topbar-h) + 20px);}
.sidebar-card{background:#fff;padding:24px;margin-bottom:20px;box-shadow:var(--shadow-sm);}
.sidebar-title{font-size:12px;letter-spacing:2px;text-transform:uppercase;font-weight:700;padding-bottom:14px;border-bottom:2px solid var(--warm-gold);margin-bottom:18px;}
.filter-list{display:flex;flex-direction:column;gap:8px;}
.filter-item{display:flex;align-items:center;justify-content:space-between;cursor:pointer;padding:4px 0;}
.filter-check{width:17px;height:17px;border:2px solid var(--border-light);border-radius:2px;flex-shrink:0;transition:var(--transition);margin-right:8px;}
.filter-item:hover .filter-check,.filter-item.selected .filter-check{border-color:var(--warm-gold);}
.filter-item.selected .filter-check{background:var(--warm-gold);}
.filter-count{font-size:12px;color:var(--muted);}

/* ===== PRODUCT DETAIL ===== */
.product-gallery{display:flex;flex-direction:column;gap:14px;}
.product-main-img{aspect-ratio:1;overflow:hidden;background:var(--champagne);}
.product-main-img img{width:100%;height:100%;object-fit:cover;}
.product-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;}
.product-thumb{aspect-ratio:1;overflow:hidden;cursor:pointer;border:2px solid transparent;transition:var(--transition);}
.product-thumb.active{border-color:var(--warm-gold);}
.product-thumb img{width:100%;height:100%;object-fit:cover;}
.product-tabs{margin-top:48px;}
.tabs-nav{display:flex;border-bottom:2px solid var(--border-light);gap:0;overflow-x:auto;}
.tab-btn{padding:13px 24px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--muted);border-bottom:2px solid transparent;margin-bottom:-2px;transition:var(--transition);cursor:pointer;white-space:nowrap;background:none;font-family:var(--font-body);}
.tab-btn.active{color:var(--deep-burgundy);border-color:var(--deep-burgundy);}
.tab-content{padding:28px 0;display:none;}
.tab-content.active{display:block;}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section{background:var(--deep-burgundy);padding:48px 0;}
.newsletter-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;}
.newsletter-inner h3{font-family:var(--font-display);font-size:26px;font-style:italic;color:#fff;margin-bottom:4px;}
.newsletter-inner p{color:rgba(255,255,255,0.7);font-size:14px;}
.newsletter-form{display:flex;gap:0;flex:1;max-width:480px;min-width:260px;}
.newsletter-form input{flex:1;padding:13px 18px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.25);color:#fff;font-family:var(--font-body);font-size:14px;outline:none;border-right:none;}
.newsletter-form input::placeholder{color:rgba(255,255,255,0.5);}

/* ===== FOOTER ===== */
.site-footer{background:var(--charcoal);color:rgba(255,255,255,0.7);padding:64px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1.2fr;gap:48px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,0.1);}
.footer-about{font-size:14px;line-height:1.8;margin:16px 0 24px;color:rgba(255,255,255,0.75);}
.social-links{display:flex;gap:10px;}
.social-link{width:36px;height:36px;border:1px solid rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.6);font-size:15px;border-radius:50%;transition:var(--transition);}
.social-link:hover{background:var(--warm-gold);border-color:var(--warm-gold);color:#fff;}
.footer-heading{font-family:var(--font-body);font-size:11px;letter-spacing:2.5px;text-transform:uppercase;font-weight:700;color:rgba(255,255,255,0.9);margin-bottom:20px;}
.footer-links{display:flex;flex-direction:column;gap:9px;}
.footer-links a{font-size:14px;color:rgba(255,255,255,0.6);transition:var(--transition);}
.footer-links a:hover{color:var(--warm-gold);padding-left:4px;}
.footer-contact p{font-size:13px;color:rgba(255,255,255,0.6);margin-bottom:10px;display:flex;align-items:flex-start;gap:10px;line-height:1.6;}
.footer-contact i{color:var(--warm-gold);flex-shrink:0;margin-top:3px;font-size:13px;}
.footer-contact a{color:rgba(255,255,255,0.6);}
.footer-contact a:hover{color:var(--warm-gold);}
.footer-bottom{padding:20px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;color:rgba(255,255,255,0.55);}
.footer-bottom p{color:rgba(255,255,255,0.55) !important;}
.footer-bottom-links{display:flex;gap:18px;}
.footer-bottom-links a{color:rgba(255,255,255,0.5);}
.footer-bottom-links a:hover{color:var(--warm-gold);}

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp,.float-call{position:fixed;right:22px;z-index:500;width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:24px;color:#fff;box-shadow:var(--shadow-md);transition:var(--transition);}
.float-whatsapp{bottom:80px;background:#25D366;}
.float-call{bottom:22px;background:var(--deep-burgundy);}
.float-whatsapp:hover,.float-call:hover{transform:scale(1.1);box-shadow:var(--shadow-lg);}

/* ===== BACK TO TOP ===== */
.back-to-top{position:fixed;bottom:22px;left:22px;width:44px;height:44px;background:var(--charcoal);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;z-index:499;opacity:0;transform:translateY(20px);transition:var(--transition);box-shadow:var(--shadow-md);}
.back-to-top.visible{opacity:1;transform:none;}
.back-to-top:hover{background:var(--warm-gold);}

/* ===== REVEAL ANIMATION ===== */
.reveal{opacity:0;transform:translateY(35px);transition:opacity 0.7s ease,transform 0.7s ease;}
.reveal.visible{opacity:1;transform:none;}

/* ===== PAGINATION ===== */
.pagination-nav{margin-top:40px;display:flex;justify-content:center;}
.pagination{display:flex;gap:6px;flex-wrap:wrap;align-items:center;}
.pagination li{list-style:none;}
.pagination a,.pagination span{display:flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 12px;border:1px solid var(--border-light);color:var(--slate);font-size:14px;font-weight:500;transition:var(--transition);}
.pagination a:hover{background:var(--champagne);color:var(--deep-burgundy);border-color:var(--warm-gold);}
.pagination li.active a{background:var(--deep-burgundy);color:#fff;border-color:var(--deep-burgundy);}

/* ===== DIVIDER ===== */
.divider{height:1px;background:var(--border-light);margin:24px 0;}

/* ===== NOTIFICATION ===== */
.notification{position:fixed;top:24px;right:24px;z-index:99999;padding:14px 20px;color:#fff;font-size:14px;box-shadow:var(--shadow-lg);transform:translateX(120%);transition:transform 0.4s ease;max-width:300px;border-radius:2px;display:flex;align-items:center;gap:10px;}
.notification.show{transform:none;}
.notification-success{background:var(--sage);}
.notification-error{background:var(--deep-burgundy);}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:var(--champagne);}
::-webkit-scrollbar-thumb{background:var(--warm-gold);border-radius:3px;}

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* LARGE DESKTOP */
@media (max-width:1280px){
  .products-grid,.grid-4{grid-template-columns:repeat(3,1fr);}
  .footer-grid{grid-template-columns:1.5fr 1fr 1fr;}
  .footer-grid>.footer-col:last-child{grid-column:1/-1;}
}

/* TABLET */
@media (max-width:992px){
  :root{--section-py:60px;}

  /* Show hamburger, hide desktop nav */
  .hamburger{display:flex;}
  .main-nav{display:none;}
  .topbar-left .topbar-left{display:none;}

  .grid-2,.grid-3,.products-grid,.grid-4{grid-template-columns:repeat(2,1fr);}

  .hero-slider{height:65vw;min-height:380px;}
  .slide-content{padding:0 6%;}

  .features-grid{grid-template-columns:repeat(2,1fr);}
  .feature-item{border-right:none;border-bottom:1px solid var(--border-light);}
  .feature-item:nth-child(odd){border-right:1px solid var(--border-light);}
  .feature-item:nth-last-child(-n+2){border-bottom:none;}

  .gallery-grid{columns:2;}

  .shop-layout{grid-template-columns:1fr;}
  .shop-sidebar{position:static;}

  .dashboard-layout{grid-template-columns:1fr;}

  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .footer-brand{grid-column:1/-1;}

  .newsletter-inner{flex-direction:column;text-align:center;}
  .newsletter-form{width:100%;max-width:100%;}

  .about-img-wrap{padding-right:28px;padding-bottom:28px;}
}

/* MOBILE LARGE */
@media (max-width:768px){
  :root{--section-py:48px;}

  .topbar{display:none;}

  .grid-2{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}

  .dashboard-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dashboard-address-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .order-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .order-row > a {
    width: 100%;
    text-align: center;
  }

  .hero-slider{height:78vw;min-height:320px;}
  .slide-title{font-size:clamp(1.6rem,6vw,2.8rem);}
  .slider-arrow{width:38px;height:38px;font-size:14px;}
  .slider-prev{left:12px;}.slider-next{right:12px;}

  .gallery-grid{columns:2;}

  .about-img-wrap{padding-right:0;padding-bottom:20px;}
  .about-img-accent{display:none;}
  .about-stats{grid-template-columns:repeat(3,1fr);}

  .tabs-nav{overflow-x:auto;-webkit-overflow-scrolling:touch;}

  .footer-grid{grid-template-columns:1fr;}

  .cart-table th:nth-child(4),.cart-table td:nth-child(4){display:none;}
  
  .checkout-steps{gap:8px;}
  .step-line{width:24px;}
  .step-label{font-size:10px;}

  .back-to-top{bottom:80px;left:16px;}
}

/* MOBILE SMALL */
@media (max-width:480px){
  :root{--section-py:36px;}
  .container{padding:0 14px;}

  .grid-3,.products-grid,.grid-4{grid-template-columns:repeat(2,1fr);gap:14px;}
  .grid-2{grid-template-columns:1fr;}

  .hero-slider{height:88vw;min-height:280px;}
  .slide-content{padding:0 5%;}
  .slide-desc{display:none;}
  .slide-btns{gap:8px;}
  .btn{padding:11px 18px;font-size:11px;}

  .features-grid{grid-template-columns:1fr 1fr;}
  .feature-item{padding:16px 14px;}
  .feature-title{font-size:12px;}

  .gallery-grid{columns:1;}

  .product-card-body{padding:14px 14px 16px;}
  .product-name{font-size:15px;}
  .price-current{font-size:16px;}

  .section-header{margin-bottom:32px;}

  .float-whatsapp,.float-call{width:44px;height:44px;font-size:20px;}
  .float-whatsapp{right:14px;bottom:68px;}
  .float-call{right:14px;bottom:14px;}

  .about-stats{grid-template-columns:repeat(3,1fr);gap:10px;}
  .stat-num{font-size:26px;}

  .footer-grid{gap:28px;}
}

/* ===== UTILITY ===== */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}

/* ===================================================
   ARTIST STUDIO HOME REFRESH
   =================================================== */
body{background:var(--ivory);color:var(--charcoal);}
.site-header{background:rgba(246,241,234,0.94);box-shadow:none;border-bottom:1px solid rgba(42,42,42,0.08);backdrop-filter:blur(14px);}
.site-logo a{display:block;min-width:0;}
.logo-name{color:var(--charcoal);}
.site-logo .logo-name{white-space:nowrap;font-size:clamp(18px,4.8vw,24px);line-height:1.1;}
.site-logo .logo-tagline{display:block;white-space:nowrap;}
.logo-tagline,.section-label,.product-cat{color:var(--terracotta);}
.main-nav a:hover,.main-nav a.active,.mobile-nav-link:hover,.product-name:hover{color:var(--navy);}
.main-nav a::after,.sidebar-title{background:var(--terracotta);border-color:var(--terracotta);}
.dropdown{border-top-color:var(--terracotta);}
.dropdown a:hover,.mobile-acc-content a:hover{color:var(--navy);background:var(--champagne);}
.header-icon:hover,.mobile-menu-close:hover{color:var(--navy);background:var(--champagne);}
.btn{border-radius:0;letter-spacing:1px;}
.btn-primary,.btn-gold{background:var(--terracotta);border-color:var(--terracotta);color:#fff;}
.btn-primary:hover,.btn-gold:hover{background:var(--navy);border-color:var(--navy);transform:none;box-shadow:none;}
.btn-outline{border-color:var(--charcoal);color:var(--charcoal);}
.btn-outline:hover{background:var(--charcoal);color:#fff;}
.section-bg,.features-bar,.newsletter-section{background:var(--champagne);}
.ornament{display:none;}

.studio-hero{height:85vh;min-height:560px;background:var(--charcoal);}
.studio-hero .slide-overlay{background:rgba(0,0,0,0.48);}
.studio-hero .slide-bg{background-position:center;filter:saturate(0.95);}
.studio-hero .slide-content{align-items:flex-start;text-align:left;padding-left:10%;max-width:760px;}
.studio-hero .slide-title{font-style:normal;font-weight:500;font-size:clamp(2.4rem, 5.5vw, 4.4rem);line-height:1.15;max-width:680px;letter-spacing:0;color:#fff;margin-bottom:16px;}
.studio-hero .slide-subtitle{font-size:clamp(0.95rem, 2vw, 1.15rem);max-width:600px;line-height:1.6;color:rgba(255,255,255,0.92);margin-bottom:28px;}
.studio-hero .slide-btns{display:flex;flex-direction:row;flex-wrap:nowrap;gap:16px;width:100%;align-items:center;margin-top:8px;}
.studio-hero .slide-btns .btn{width:auto;flex:none;}
.studio-hero .slider-dots{left:8%;bottom:38px;}
.studio-hero .slider-dot{border:0;background:rgba(255,255,255,0.45);height:2px;width:34px;padding:0;}
.studio-hero .slider-dot.active{background:#fff;width:64px;}
.studio-hero .slider-arrow{background:transparent;border:1px solid rgba(255,255,255,0.45);backdrop-filter:none;}
.studio-hero .slider-arrow:hover{background:rgba(255,255,255,0.14);border-color:#fff;}

.studio-section-head{max-width:780px;margin:0 auto 42px;text-align:center;}
.studio-section-head h2{font-size:clamp(2rem,4vw,4rem);font-weight:500;font-style:normal;letter-spacing:0;color:var(--charcoal);}
.studio-section-head .section-label{margin-bottom:8px;color:var(--terracotta);}

.studio-create,.studio-featured{background:var(--ivory);}
.studio-category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.studio-category-card{position:relative;display:block;overflow:hidden;min-height:520px;background:var(--champagne);}
.studio-category-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;transition:transform 0.8s ease;}
.studio-category-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.38),rgba(0,0,0,0.02) 58%);}
.studio-category-card span{position:absolute;left:24px;bottom:24px;z-index:1;color:#fff;font-family:var(--font-display);font-size:clamp(1.8rem,3vw,3rem);font-weight:500;}
.studio-category-card:hover img{transform:scale(1.06);}

.studio-process{background:var(--champagne);}
.studio-process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.studio-process-card{background:transparent;}
.studio-process-card img{width:100%;aspect-ratio:4/5;object-fit:cover;margin-bottom:18px;}
.studio-process-card h3{font-family:var(--font-body);font-size:13px;letter-spacing:1.8px;text-transform:uppercase;margin-bottom:8px;color:var(--charcoal);}
.studio-process-card p{font-size:15px;line-height:1.7;color:var(--muted);}

.studio-products-grid{grid-template-columns:repeat(3,1fr);gap:34px;}
.studio-product-card, .product-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.015);
    border: 1px solid rgba(42,42,42,0.07);
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}
.studio-product-card:hover, .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(92,26,26,0.07);
    border-color: rgba(92,26,26,0.18);
}
.studio-product-card .product-card-img, .product-card .product-card-img {
    aspect-ratio: 4/5;
    background: var(--bg);
    border: 0;
    border-bottom: 1px solid rgba(42,42,42,0.04);
    overflow: hidden;
}
.studio-product-card .product-card-img img, .product-card .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.studio-product-card:hover .product-card-img img, .product-card:hover .product-card-img img {
    transform: scale(1.06);
}
.studio-product-card .product-card-body, .product-card .product-card-body {
    padding: 20px 18px 24px;
    background: #ffffff;
}
.product-badges, .product-actions, .btn-add-cart {
    display: none;
}
.price-current{color:var(--charcoal);}

.studio-gallery-section{background:var(--ivory);}
.studio-filter-tabs{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin:-12px 0 34px;}
.studio-filter-tabs button{border:1px solid rgba(42,42,42,0.16);padding:9px 18px;font-size:12px;text-transform:uppercase;letter-spacing:1.2px;color:var(--muted);background:transparent;}
.studio-filter-tabs button.active,.studio-filter-tabs button:hover{background:var(--charcoal);border-color:var(--charcoal);color:#fff;}
.studio-masonry{columns:4;column-gap:16px;}
.studio-masonry .gallery-item{border:0;text-align:left;padding:0;background:transparent;width:100%;margin-bottom:16px;}
.gallery-overlay{background:rgba(42,42,42,0.35);}
.gallery-item:hover .gallery-overlay{opacity:1;}

.studio-cta{position:relative;isolation:isolate;overflow:hidden;padding:120px 0;background:var(--charcoal);text-align:center;}
.studio-cta::before{content:'';position:absolute;inset:-24px;background-image:var(--cta-bg);background-size:cover;background-position:center;filter:blur(14px);transform:scale(1.06);opacity:0.5;z-index:-2;}
.studio-cta::after{content:'';position:absolute;inset:0;background:rgba(42,42,42,0.52);z-index:-1;}
.studio-cta-inner{max-width:780px;margin:0 auto;color:#fff;}
.studio-cta h2{color:#fff;font-size:clamp(2.2rem,5vw,5rem);font-weight:500;font-style:normal;margin-bottom:30px;}

.newsletter-section{display:none;}
.float-call{display:none;}
.float-whatsapp{bottom:22px;background:var(--terracotta);box-shadow:none;}
.float-whatsapp:hover{background:var(--navy);box-shadow:none;transform:none;}
.back-to-top:hover{background:var(--terracotta);}
.site-footer{background:var(--charcoal);}
.page-banner{background:var(--champagne) !important; border-bottom:1px solid rgba(42, 42, 42, 0.08); box-shadow:0 4px 12px rgba(0,0,0,0.02);}
.page-banner::before{display:none !important;}
.page-banner h1{color:var(--charcoal) !important;}
.breadcrumb a{color:var(--muted) !important;}
.breadcrumb span{color:rgba(42,42,42,0.32) !important;}
.breadcrumb .current{color:var(--terracotta) !important;}
.studio-page-banner{padding:82px 0;}

@media (max-width:992px){
  .studio-hero{height:82vh;min-height:520px;}
  .studio-category-card{min-height:420px;}
  .studio-masonry{columns:3;}
}
@media (max-width:768px){
  .studio-hero{height:85vh;min-height:520px;}
  .studio-hero .slide-content{padding:0 22px;}
  .studio-hero .slide-title{font-size:clamp(2.7rem,14vw,4.8rem);}
  .studio-hero .slider-dots{left:22px;}
  .studio-category-grid,.studio-process-grid,.studio-products-grid{grid-template-columns:1fr;gap:24px;}
  .studio-category-card{min-height:380px;}
  .studio-process-card img{aspect-ratio:5/4;}
  .studio-masonry{columns:2;}
}
@media (max-width:480px){
  .header-inner{gap:8px;height:72px;}
  .header-actions{gap:0;flex-shrink:0;}
  .header-icon{width:32px;height:32px;font-size:16px;}
  .hamburger{width:30px;height:24px;}
  .site-logo .logo-name{font-size:20px;}
  .logo-tagline{font-size:8px;letter-spacing:2.4px;}
  .studio-hero .slide-btns{display:flex;flex-direction:row;gap:10px;width:100%;}
  .studio-hero .slide-btns .btn{flex:1;text-align:center;padding:12px 6px;font-size:10px;white-space:nowrap;}
  .studio-category-card{min-height:320px;}
  .studio-masonry{columns:1;}
  .studio-filter-tabs{justify-content:center;overflow:visible;flex-wrap:wrap;padding-bottom:0;}
  .studio-filter-tabs button{white-space:nowrap;padding:9px 13px;font-size:11px;}
}

/* ===================================================
   UI CLEANUP & OPTIMIZATIONS (As per user request)
   =================================================== */

/* Enforce strict color palette and remove shadows globally */
:root {
  --shadow-sm: none !important;
  --shadow-md: none !important;
  --shadow-lg: none !important;
}

/* Clean up gradients and overlays to let images dominate */
.slide-overlay {
  background: rgba(42, 42, 42, 0.25) !important;
}
.studio-category-card::after {
  background: rgba(42, 42, 42, 0.2) !important;
}
.category-card-overlay {
  background: rgba(42, 42, 42, 0.3) !important;
}

/* Ensure background and text colors map directly to the requested palette */
body, .studio-create, .studio-featured, .studio-gallery-section, .page-banner, .site-header {
  background: var(--ivory) !important;
  color: var(--charcoal) !important;
}
.section-bg, .studio-process, .features-bar, .sidebar-card, .dashboard-card, .product-card, .studio-category-card {
  background: var(--champagne) !important;
}

/* Maintain legibility for image-heavy sections */
.studio-hero .slide-title, 
.studio-hero .slide-desc,
.studio-hero p,
.studio-category-card span,
.studio-cta h2,
.slide-content * {
  color: #fff !important;
}

/* Remove leftover placeholder content entirely */
.cat-placeholder, 
.gallery-placeholder, 
.author-avatar-ph {
  display: none !important;
}

/* Consistent Spacing Across Sections */
.section, .studio-cta, .page-banner {
  padding: 80px 0 !important;
}

/* Mobile Optimizations: Stacking, Spacing, Readable Text */
@media (max-width: 768px) {
  /* Proper padding */
  .section, .studio-cta, .page-banner {
    padding: 56px 16px !important;
  }
  
  /* Clean stacking for structural grids */
  .grid-2, .grid-3, .grid-4, 
  .studio-category-grid, 
  .studio-process-grid, 
  .studio-products-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
  }

  /* Center footer contents when stacked */
  .footer-brand, .footer-col {
    align-items: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  
  /* Improve text readability on small screens */
  body, p, .feature-desc, .product-name {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  h1, .slide-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  h2, .studio-section-head h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }
}

/* ==========================================================================
   BENGALI HERITAGE EXACT DESIGN SYSTEM UPGRADES (MATCHING MASTER DESIGN SHEET)
   ========================================================================== */

/* 1. Logo area corners & Navigation decorative Alpona border */
.logo-wrap {
  position: relative;
  padding: 6px 16px;
  display: inline-block;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.455;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23c9963b' stroke-width='1.5'%3E%3Cpath d='M2%2C18 V2 H18' stroke-linecap='round'/%3E%3Ccircle cx='6' cy='6' r='1.5' fill='%23c9963b'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23c9963b' stroke-width='1.5'%3E%3Cpath d='M18%2C18 V2 H2' stroke-linecap='round'/%3E%3Ccircle cx='14' cy='6' r='1.5' fill='%23c9963b'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23c9963b' stroke-width='1.5'%3E%3Cpath d='M2%2C2 V18 H18' stroke-linecap='round'/%3E%3Ccircle cx='6' cy='14' r='1.5' fill='%23c9963b'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23c9963b' stroke-width='1.5'%3E%3Cpath d='M18%2C2 V18 H2' stroke-linecap='round'/%3E%3Ccircle cx='14' cy='14' r='1.5' fill='%23c9963b'/%3E%3C/svg%3E");
  background-position: 
    top 2px left 2px,
    top 2px right 2px,
    bottom 2px left 2px,
    bottom 2px right 2px;
  background-repeat: no-repeat;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='12' viewBox='0 0 200 12' fill='none' stroke='%23c9963b' stroke-width='1.5'%3E%3Cpath d='M0%2C6 Q25%2C1 50%2C6 T100%2C6 T150%2C6 T200%2C6' stroke-linecap='round'/%3E%3Cpath d='M0%2C6 Q25%2C11 50%2C6 T100%2C6 T150%2C6 T200%2C6' stroke-linecap='round'/%3E%3Ccircle cx='25' cy='6' r='1.5' fill='%23c9963b'/%3E%3Ccircle cx='75' cy='6' r='1.5' fill='%23c9963b'/%3E%3Ccircle cx='125' cy='6' r='1.5' fill='%23c9963b'/%3E%3Ccircle cx='175' cy='6' r='1.5' fill='%23c9963b'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 8px;
  pointer-events: none;
}

/* 2. Hero Slider — ensure relative positioning so ::before corners are anchored correctly */
.studio-hero {
  position: relative;
  overflow: hidden;
}

/* Hero Corner Ornaments — exact positions tuned by client */
.studio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.55;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 10,150 C 15,110 30,85 55,60 C 80,35 110,15 150,10 L 150,0 C 105,5 70,25 45,50 C 20,75 5,105 0,150 Z M 55,30 C 65,20 85,25 75,40 C 65,50 50,40 55,30 Z M 30,55 C 40,45 60,50 50,65 C 40,75 25,65 30,55 Z M 75,15 C 85,5 105,10 95,25 C 85,35 70,25 75,15 Z M 110,25 C 100,20 90,30 95,35 C 100,40 110,30 110,25 Z' /%3E%3Ccircle cx='90' cy='60' r='3'/%3E%3Ccircle cx='60' cy='90' r='3'/%3E%3Ccircle cx='120' cy='45' r='2'/%3E%3Ccircle cx='45' cy='120' r='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 150,150 C 145,110 130,85 105,60 C 80,35 50,15 10,10 L 10,0 C 55,5 90,25 115,50 C 140,75 155,105 160,150 Z M 105,30 C 95,20 75,25 85,40 C 95,50 110,40 105,30 Z M 130,55 C 120,45 100,50 110,65 C 120,75 135,65 130,55 Z M 85,15 C 75,5 55,10 65,25 C 75,35 90,25 85,15 Z M 50,25 C 60,20 70,30 65,35 C 60,40 50,30 50,25 Z' /%3E%3Ccircle cx='70' cy='60' r='3'/%3E%3Ccircle cx='100' cy='90' r='3'/%3E%3Ccircle cx='40' cy='45' r='2'/%3E%3Ccircle cx='115' cy='120' r='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 10,10 C 15,50 30,75 55,100 C 80,125 110,145 150,150 L 150,160 C 105,155 70,135 45,110 C 20,85 5,55 0,10 Z M 55,130 C 65,140 85,135 75,120 C 65,110 50,120 55,130 Z M 30,105 C 40,115 60,110 50,95 C 40,85 25,95 30,105 Z M 75,145 C 85,155 105,150 95,135 C 85,125 70,135 75,145 Z M 110,135 C 100,140 90,130 95,125 C 100,120 110,130 110,135 Z' /%3E%3Ccircle cx='90' cy='100' r='3'/%3E%3Ccircle cx='60' cy='70' r='3'/%3E%3Ccircle cx='120' cy='115' r='2'/%3E%3Ccircle cx='45' cy='40' r='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 150,10 C 145,50 130,75 105,110 C 80,135 50,155 10,160 L 10,150 C 55,145 90,125 115,100 C 140,75 155,50 160,10 Z M 105,130 C 95,140 75,135 85,120 C 95,110 110,120 105,130 Z M 130,105 C 120,115 100,110 110,95 C 120,85 135,95 130,105 Z M 85,145 C 75,155 55,150 65,135 C 75,125 90,135 85,145 Z M 50,135 C 60,140 70,130 65,125 C 60,120 50,130 50,135 Z' /%3E%3Ccircle cx='70' cy='100' r='3'/%3E%3Ccircle cx='100' cy='70' r='3'/%3E%3Ccircle cx='40' cy='115' r='2'/%3E%3Ccircle cx='115' cy='40' r='2'/%3E%3C/svg%3E");
  background-position:
    top -9px left -8px,
    top -9px right -8px,
    bottom 0px left -18px,
    bottom 0px right -18px;
  background-repeat: no-repeat;
  background-size: 160px 160px, 160px 160px, 160px 160px, 160px 160px;
}

/* Section Corner Ornaments — edge-flush, applied to ALL major sections across all pages */
.homepage-about,
.studio-gallery-section,
.testimonials-section,
.homepage-blogs,
.studio-create,
.studio-process,
.studio-featured,
.studio-new-arrivals,
.page-banner,
.section {
  position: relative;
  overflow: hidden;
}

.homepage-about::before,
.studio-gallery-section::before,
.testimonials-section::before,
.homepage-blogs::before,
.studio-create::before,
.studio-process::before,
.studio-featured::before,
.studio-new-arrivals::before,
.page-banner::before,
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.30;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 10,150 C 15,110 30,85 55,60 C 80,35 110,15 150,10 L 150,0 C 105,5 70,25 45,50 C 20,75 5,105 0,150 Z M 55,30 C 65,20 85,25 75,40 C 65,50 50,40 55,30 Z M 30,55 C 40,45 60,50 50,65 C 40,75 25,65 30,55 Z M 75,15 C 85,5 105,10 95,25 C 85,35 70,25 75,15 Z M 110,25 C 100,20 90,30 95,35 C 100,40 110,30 110,25 Z' /%3E%3Ccircle cx='90' cy='60' r='3'/%3E%3Ccircle cx='60' cy='90' r='3'/%3E%3Ccircle cx='120' cy='45' r='2'/%3E%3Ccircle cx='45' cy='120' r='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 150,150 C 145,110 130,85 105,60 C 80,35 50,15 10,10 L 10,0 C 55,5 90,25 115,50 C 140,75 155,105 160,150 Z M 105,30 C 95,20 75,25 85,40 C 95,50 110,40 105,30 Z M 130,55 C 120,45 100,50 110,65 C 120,75 135,65 130,55 Z M 85,15 C 75,5 55,10 65,25 C 75,35 90,25 85,15 Z M 50,25 C 60,20 70,30 65,35 C 60,40 50,30 50,25 Z' /%3E%3Ccircle cx='70' cy='60' r='3'/%3E%3Ccircle cx='100' cy='90' r='3'/%3E%3Ccircle cx='40' cy='45' r='2'/%3E%3Ccircle cx='115' cy='120' r='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 10,10 C 15,50 30,75 55,100 C 80,125 110,145 150,150 L 150,160 C 105,155 70,135 45,110 C 20,85 5,55 0,10 Z M 55,130 C 65,140 85,135 75,120 C 65,110 50,120 55,130 Z M 30,105 C 40,115 60,110 50,95 C 40,85 25,95 30,105 Z M 75,145 C 85,155 105,150 95,135 C 85,125 70,135 75,145 Z M 110,135 C 100,140 90,130 95,125 C 100,120 110,130 110,135 Z' /%3E%3Ccircle cx='90' cy='100' r='3'/%3E%3Ccircle cx='60' cy='70' r='3'/%3E%3Ccircle cx='120' cy='115' r='2'/%3E%3Ccircle cx='45' cy='40' r='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='%23c9963b'%3E%3Cpath d='M 150,10 C 145,50 130,75 105,110 C 80,135 50,155 10,160 L 10,150 C 55,145 90,125 115,100 C 140,75 155,50 160,10 Z M 105,130 C 95,140 75,135 85,120 C 95,110 110,120 105,130 Z M 130,105 C 120,115 100,110 110,95 C 120,85 135,95 130,105 Z M 85,145 C 75,155 55,150 65,135 C 75,125 90,135 85,145 Z M 50,135 C 60,140 70,130 65,125 C 60,120 50,130 50,135 Z' /%3E%3Ccircle cx='70' cy='100' r='3'/%3E%3Ccircle cx='100' cy='70' r='3'/%3E%3Ccircle cx='40' cy='115' r='2'/%3E%3Ccircle cx='115' cy='40' r='2'/%3E%3C/svg%3E");
  background-position:
    top -9px left -8px,
    top -9px right -8px,
    bottom 0px left -18px,
    bottom 0px right -18px;
  background-repeat: no-repeat;
  background-size: 160px 160px, 160px 160px, 160px 160px, 160px 160px;
}

/* Hero corners override — higher opacity + z-index on dark bg */
.studio-hero::before {
  opacity: 0.55 !important;
  z-index: 5 !important;
}

/* Footer — clip corners inside */
.site-footer {
  position: relative;
  overflow: hidden;
}


/* Footer Corners */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' fill='none' stroke='%23c9963b' stroke-width='1.8' stroke-opacity='0.30'%3E%3Cpath d='M2%2C78 V2 H78' /%3E%3Cpath d='M2%2C2 C30%2C30 50%2C20 62%2C8 C50%2C20 50%2C30 38%2C42 C30%2C50 20%2C40 28%2C28 C20%2C38 12%2C28 2%2C2 Z' fill='%23c9963b' fill-opacity='0.30'/%3E%3Ccircle cx='16' cy='16' r='3' fill='%23c9963b' fill-opacity='0.30'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' fill='none' stroke='%23c9963b' stroke-width='1.8' stroke-opacity='0.30'%3E%3Cpath d='M78%2C78 V2 H2' /%3E%3Cpath d='M78%2C2 C48%2C30 28%2C20 16%2C8 C28%2C20 28%2C30 40%2C42 C48%2C50 58%2C40 50%2C28 C58%2C38 66%2C28 78%2C2 Z' fill='%23c9963b' fill-opacity='0.30'/%3E%3Ccircle cx='64' cy='16' r='3' fill='%23c9963b' fill-opacity='0.30'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' fill='none' stroke='%23c9963b' stroke-width='1.8' stroke-opacity='0.30'%3E%3Cpath d='M2%2C2 V78 H78' /%3E%3Cpath d='M2%2C78 C30%2C48 50%2C58 62%2C70 C50%2C58 50%2C48 38%2C36 C30%2C28 20%2C38 28%2C50 C20%2C40 12%2C50 2%2C78 Z' fill='%23c9963b' fill-opacity='0.30'/%3E%3Ccircle cx='16' cy='64' r='3' fill='%23c9963b' fill-opacity='0.30'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' fill='none' stroke='%23c9963b' stroke-width='1.8' stroke-opacity='0.30'%3E%3Cpath d='M78%2C2 V78 H2' /%3E%3Cpath d='M78%2C78 C48%2C48 28%2C58 16%2C70 C28%2C58 28%2C48 40%2C36 C48%2C28 58%2C38 50%2C50 C58%2C40 66%2C50 78%2C78 Z' fill='%23c9963b' fill-opacity='0.30'/%3E%3Ccircle cx='64' cy='64' r='3' fill='%23c9963b' fill-opacity='0.30'/%3E%3C/svg%3E");
  background-position: 
    top 25px left 25px,
    top 25px right 25px,
    bottom 25px left 25px,
    bottom 25px right 25px;
  background-repeat: no-repeat;
}

/* 3. Repeating seamless background pattern (PATTERN 01 from Design Sheet, 2% to 4% Opacity) */
.alpana-bg-alt1 {
  position: relative;
}
.alpana-bg-alt1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.09; /* 3.5% opacity */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none' stroke='%23c9963b' stroke-width='1.2'%3E%3Cpath d='M60%2C5 C45%2C15 45%2C35 60%2C45 C75%2C35 75%2C15 60%2C5 Z M5%2C60 C15%2C45 35%2C45 45%2C60 C35%2C75 15%2C75 5%2C60 Z M60%2C75 C45%2C85 45%2C105 60%2C115 C75%2C105 75%2C85 60%2C75 Z M75%2C60 C85%2C45 105%2C45 115%2C60 C105%2C75 85%2C75 75%2C60 Z'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3Cpath d='M60%2C10 C30%2C30 30%2C90 60%2C110 C90%2C90 90%2C30 60%2C10'/%3E%3Cpath d='M10%2C60 C30%2C30 90%2C30 110%2C60 C90%2C90 30%2C90 10%2C60'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
}

/* 4. Painting Wash background (Watercolor paper texture with soft beige/terracotta washes, below 4%) */
.alpana-bg-alt2 {
  position: relative;
  background-color: var(--ivory) !important;
}
.alpana-bg-alt2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.09;
  background-image: 
    radial-gradient(circle at 20% 30%, #A04A2C 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, #C8A46A 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, #5C3A2A 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  background-size: cover;
}

/* 5. Category Card Corner Ornaments */
.studio-category-card {
  position: relative;
}
.studio-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none' stroke='%23c9963b' stroke-width='1.5' stroke-opacity='0.55'%3E%3Cpath d='M2%2C38 V2 H38' stroke-linecap='round'/%3E%3Cpath d='M2%2C2 C12%2C12 18%2C12 24%2C6' stroke-linecap='round'/%3E%3Cpath d='M2%2C2 C12%2C12 12%2C18 6%2C24' stroke-linecap='round'/%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none' stroke='%23c9963b' stroke-width='1.5' stroke-opacity='0.55'%3E%3Cpath d='M38%2C38 V2 H2' stroke-linecap='round'/%3E%3Cpath d='M38%2C2 C28%2C12 22%2C12 16%2C6' stroke-linecap='round'/%3E%3Cpath d='M38%2C2 C28%2C12 28%2C18 34%2C24' stroke-linecap='round'/%3E%3Ccircle cx='30' cy='10' r='1.5' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none' stroke='%23c9963b' stroke-width='1.5' stroke-opacity='0.55'%3E%3Cpath d='M2%2C2 V38 H38' stroke-linecap='round'/%3E%3Cpath d='M2%2C38 C12%2C28 18%2C28 24%2C34' stroke-linecap='round'/%3E%3Cpath d='M2%2C38 C12%2C28 12%2C22 6%2C16' stroke-linecap='round'/%3E%3Ccircle cx='10' cy='30' r='1.5' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none' stroke='%23c9963b' stroke-width='1.5' stroke-opacity='0.55'%3E%3Cpath d='M38%2C2 V38 H2' stroke-linecap='round'/%3E%3Cpath d='M38%2C38 C28%2C28 22%2C28 16%2C34' stroke-linecap='round'/%3E%3Cpath d='M38%2C38 C28%2C28 28%2C22 34%2C16' stroke-linecap='round'/%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E");
  background-position: 
    top 8px left 8px,
    top 8px right 8px,
    bottom 8px left 8px,
    bottom 8px right 8px;
  background-repeat: no-repeat;
  transition: opacity 0.35s ease;
}

/* 6. Product Image Corners & Kantha Stitch Border (FRAME 01 from Design Sheet) */
.product-card-img {
  position: relative;
}
.product-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.55'%3E%3Cpath d='M2%2C28 V2 H28' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='8' r='1' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.55'%3E%3Cpath d='M28%2C28 V2 H2' stroke-linecap='round'/%3E%3Ccircle cx='22' cy='8' r='1' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.55'%3E%3Cpath d='M2%2C2 V28 H28' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='22' r='1' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.55'%3E%3Cpath d='M28%2C2 V28 H2' stroke-linecap='round'/%3E%3Ccircle cx='22' cy='22' r='1' fill='%23c9963b' fill-opacity='0.55'/%3E%3C/svg%3E");
  background-position: 
    top 6px left 6px,
    top 6px right 6px,
    bottom 6px left 6px,
    bottom 6px right 6px;
  background-repeat: no-repeat;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--warm-gold);
  opacity: 0.455;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}
.product-card:hover::after {
  opacity: 0.45;
}

/* 7. Gallery corners & Background watermarks */
.gallery-item {
  position: relative;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.60'%3E%3Cpath d='M2%2C18 V2 H18' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.60'%3E%3Cpath d='M18%2C18 V2 H2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.60'%3E%3Cpath d='M2%2C2 V18 H18' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.60'%3E%3Cpath d='M18%2C2 V18 H2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: 
    top 8px left 8px,
    top 8px right 8px,
    bottom 8px left 8px,
    bottom 8px right 8px;
  background-repeat: no-repeat;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  opacity: 0.455;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}
.gallery-item:hover::after {
  opacity: 0.55;
}

/* 8. Process Step styling */

/* 9. Testimonials Watermark & Corner scrolls (WATERMARK 02: Radial Padma Medallion, 4% Opacity) */
.testimonial-card {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.12'%3E%3Ccircle cx='120' cy='120' r='100'/%3E%3Ccircle cx='120' cy='120' r='80' stroke-dasharray='4 4'/%3E%3Ccircle cx='120' cy='120' r='40'/%3E%3Cpath d='M 120%2C20 C 115%2C40 100%2C50 120%2C70 C 140%2C50 125%2C40 120%2C20 Z' fill='%23c9963b' fill-opacity='0.12'/%3E%3Cpath d='M 120%2C220 C 115%2C200 100%2C190 120%2C170 C 140%2C190 125%2C200 120%2C220 Z' fill='%23c9963b' fill-opacity='0.12'/%3E%3Cpath d='M 20%2C120 C 40%2C115 50%2C100 70%2C120 C 50%2C140 40%2C125 20%2C120 Z' fill='%23c9963b' fill-opacity='0.12'/%3E%3Cpath d='M 220%2C120 C 200%2C115 190%2C100 170%2C120 C 190%2C140 200%2C125 220%2C120 Z' fill='%23c9963b' fill-opacity='0.12'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.45'%3E%3Cpath d='M2%2C28 V2 H28' stroke-linecap='round'/%3E%3Cpath d='M2%2C2 Q12%2C12 6%2C18' stroke-linecap='round'/%3E%3Cpath d='M2%2C2 Q12%2C12 18%2C6' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.45'%3E%3Cpath d='M28%2C28 V2 H2' stroke-linecap='round'/%3E%3Cpath d='M28%2C2 Q16%2C12 24%2C18' stroke-linecap='round'/%3E%3Cpath d='M28%2C2 Q16%2C12 12%2C6' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.45'%3E%3Cpath d='M2%2C2 V78 H78' stroke-linecap='round'/%3E%3Cpath d='M2%2C30 Q12%2C18 6%2C12' stroke-linecap='round'/%3E%3Cpath d='M2%2C30 Q12%2C18 18%2C24' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none' stroke='%23c9963b' stroke-width='1.2' stroke-opacity='0.45'%3E%3Cpath d='M28%2C2 V28 H2' stroke-linecap='round'/%3E%3Cpath d='M28%2C30 Q16%2C18 24%2C12' stroke-linecap='round'/%3E%3Cpath d='M28%2C30 Q16%2C18 12%2C24' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: 
    top 10px left 10px,
    top 10px right 10px,
    bottom 10px left 10px,
    bottom 10px right 10px;
  background-repeat: no-repeat;
}

/* 10. CTA Vertical Borders */
.studio-cta {
  position: relative;
}
.studio-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 16px;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='100' viewBox='0 0 16 100' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M8,0 C2,25 14,25 8,50 C2,75 14,75 8,100' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='25' r='1.5' fill='%23ffffff'/%3E%3Ccircle cx='8' cy='75' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 16px auto;
  pointer-events: none;
}
.studio-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 16px;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='100' viewBox='0 0 16 100' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M8,0 C2,25 14,25 8,50 C2,75 14,75 8,100' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='25' r='1.5' fill='%23ffffff'/%3E%3Ccircle cx='8' cy='75' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 16px auto;
  pointer-events: none;
}

/* 11. Footer top wave border & social icon rings (FOOTER BORDER 01 from Design Sheet) */
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  opacity: 0.455;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='18' viewBox='0 0 200 18' fill='none' stroke='%23c9963b' stroke-width='1.5'%3E%3Cpath d='M0%2C9 Q50%2C-2 100%2C9 T200%2C9' stroke-linecap='round'/%3E%3Cpath d='M0%2C9 Q50%2C20 100%2C9 T200%2C9' stroke-linecap='round'/%3E%3Cpath d='M50%2C9 Q53%2C4 58%2C9 Q53%2C12 50%2C9 Z' fill='%23c9963b'/%3E%3Ccircle cx='50' cy='9' r='2' fill='%23c9963b'/%3E%3Cpath d='M150%2C9 Q153%2C4 158%2C9 Q153%2C12 150%2C9 Z' fill='%23c9963b'/%3E%3Ccircle cx='150' cy='9' r='2' fill='%23c9963b'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 12px;
  pointer-events: none;
}

.footer-social a {
  border-radius: 50% !important;
  border: 1px dashed var(--warm-gold) !important;
  padding: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 0 2px rgba(201, 150, 59, 0.15) !important;
}

/* 12. Section Headings: Alpona symbol above, divider below (DIVIDER 01: Lotus Divider) */
.studio-section-head .section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 10px auto;
  opacity: 1.0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='none' stroke='%239B2A2A' stroke-width='1.8'%3E%3Cpath d='M50%2C4 C50%2C4 58%2C18 72%2C22 C50%2C22 50%2C36 50%2C36 C50%2C36 50%2C22 28%2C22 C42%2C18 50%2C4 50%2C4 Z' fill='%239B2A2A' fill-opacity='0.55'/%3E%3Ccircle cx='50' cy='36' r='3.5' fill='%239B2A2A'/%3E%3Ccircle cx='34' cy='22' r='1.5' fill='%239B2A2A'/%3E%3Ccircle cx='66' cy='22' r='1.5' fill='%239B2A2A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.studio-section-head::after {
  content: "";
  display: block;
  width: 200px;
  height: 18px;
  margin: 14px auto 0 auto;
  opacity: 1.0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 40' fill='none' stroke='%239B2A2A' stroke-width='2'%3E%3Cpath d='M0%2C20 H340' /%3E%3Cpath d='M460%2C20 H800' /%3E%3Cpath d='M400%2C4 C400%2C4 412%2C22 428%2C26 C400%2C26 400%2C38 400%2C38 C400%2C38 400%2C26 372%2C26 C388%2C22 400%2C4 400%2C4 Z' fill='%239B2A2A' /%3E%3Ccircle cx='340' cy='20' r='4' fill='%239B2A2A'/%3E%3Ccircle cx='460' cy='20' r='4' fill='%239B2A2A'/%3E%3Ccircle cx='310' cy='20' r='2.5' fill='%239B2A2A'/%3E%3Ccircle cx='490' cy='20' r='2.5' fill='%239B2A2A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 13. Handmade Paper Texture (under 2% opacity) */
.homepage-about, 
.studio-new-arrivals, 
.features-bar {
  position: relative;
}

.homepage-about::after, 
.studio-new-arrivals::after, 
.features-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* 14. Buttons & Hovers */
.btn {
  border-radius: 4px !important;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn:hover {
  box-shadow: 0 4px 12px rgba(155, 42, 42, 0.12) !important;
}

.product-card-img img {
  transition: transform 0.35s ease !important;
}

.product-card:hover .product-card-img img {
  transform: scale(1.03) !important;
}

/* 15. Mobile Hero Slider Layout (Stack Image on Top, Text Below) */
@media (max-width: 767px) {
  .hero-slider {
    height: auto !important;
    min-height: auto !important;
  }
  .slider-track {
    height: auto !important;
  }
  .slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    background: var(--charcoal);
  }
  .slide-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 300px !important;
    transform: none !important;
    transition: none !important;
  }
  .slide.active .slide-bg {
    transform: none !important;
  }
  .slide-overlay {
    display: none !important;
  }
  .slide-content {
    position: relative !important;
    inset: auto !important;
    padding: 30px 20px 60px 20px !important;
    max-width: 100% !important;
    background: var(--charcoal) !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .studio-hero .slide-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    margin-bottom: 12px !important;
  }
  .studio-hero .slide-subtitle {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
    display: block !important;
  }
  .studio-hero .slide-btns {
    margin-top: 10px !important;
    gap: 10px !important;
  }
  .studio-hero .slider-dots {
    left: 20px !important;
    bottom: 20px !important;
  }
  .slider-arrow {
    top: 150px !important;
    transform: translateY(-50%) !important;
  }

  /* Hero Slider Corners — mobile: scaled down, positions adjusted proportionally */
  .studio-hero::before {
    background-size: 90px 90px, 90px 90px, 90px 90px, 90px 90px !important;
    background-position:
      top -5px left -4px,
      top -5px right -4px,
      bottom 0px left -10px,
      bottom 0px right -10px !important;
    opacity: 0.45 !important;
  }

  /* Section corners — smaller on mobile */
  .homepage-about::before,
  .studio-gallery-section::before,
  .testimonials-section::before,
  .homepage-blogs::before {
    background-size: 80px 80px, 80px 80px, 80px 80px, 80px 80px !important;
    background-position:
      top 10px left 10px,
      top 10px right 10px,
      bottom 10px left 10px,
      bottom 10px right 10px !important;
    opacity: 0.28 !important;
  }

  /* Footer corners — smaller on mobile */
  .site-footer::before {
    background-size: 50px 50px, 50px 50px, 50px 50px, 50px 50px !important;
    background-position:
      top 12px left 12px,
      top 12px right 12px,
      bottom 12px left 12px,
      bottom 12px right 12px !important;
  }

  /* Section divider — narrower on mobile */
  .studio-section-head::after {
    width: 140px !important;
    height: 14px !important;
  }

  /* Homepage About — stack vertically on mobile */
  .homepage-about .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .homepage-about .about-img-wrap {
    width: 100% !important;
    order: -1 !important; /* image comes first */
  }

  .homepage-about .about-img-wrap img,
  .homepage-about .about-img-wrap > div {
    width: 100% !important;
    aspect-ratio: 4/3 !important; /* wider ratio for mobile, less tall */
    border-radius: 6px !important;
  }

  .homepage-about .about-text-wrap {
    width: 100% !important;
    order: 0 !important;
  }

  .homepage-about .about-stats {
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  .homepage-about {
    padding: 48px 0 !important;
  }
}
