.hero{border-radius:16px;overflow:hidden;border:1px solid var(--border);margin:24px 0}
.hero .track{display:flex;gap:8px;overflow:auto;scroll-snap-type:x mandatory}
.hero .slide{min-width:100%;scroll-snap-align:start;position:relative}
.hero .slide img{width:100%;height:420px;object-fit:cover;border-radius:16px}
.hero .slide-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,9,12,0) 30%,rgba(8,9,12,0.75) 100%);display:flex;align-items:flex-end;border-radius:16px}
.hero .overlay-inner{padding:32px;max-width:520px;color:#fff;display:flex;flex-direction:column;gap:12px}
.hero .overlay-inner .badge{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:40px;background:rgba(255,255,255,0.16);font-size:13px;backdrop-filter:blur(6px);text-transform:uppercase;letter-spacing:.08em}
.hero .overlay-inner h2{margin:0;font-size:32px;font-weight:600}
.hero .overlay-inner .btn{align-self:flex-start;background:rgba(255,255,255,0.18);color:#fff;border:1px solid rgba(255,255,255,0.4)}
.hero .overlay-inner .btn:hover{background:#fff;color:#111}
.hero .overlay-inner .btn i{font-size:14px}
.hero .bullets{display:flex;gap:6px;justify-content:center;margin:10px 0}
.hero .bullets span{width:8px;height:8px;border-radius:50%;background:#ddd}

@media (max-width: 767px){
  .hero .slide img{height:320px}
  .hero .overlay-inner{padding:20px;gap:8px}
  .hero .overlay-inner h2{font-size:24px}
}

.section{margin:40px 0}
.section .section-title{font-size:24px;margin:0 0 16px}

.newsletter{border:1px solid var(--border);border-radius:16px;padding:20px;display:flex;gap:12px;align-items:center;justify-content:space-between}
.newsletter input{border:1px solid var(--border);border-radius:10px;padding:12px 14px;min-width:260px}
.newsletter .stack{flex:1}

.related-grid{display:grid;gap:16px;grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width: 991px){.related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* Product listing */
.product-filter{display:flex;align-items:center;gap:12px;margin:16px 0}
.product-filter select{background:transparent;border:1px solid var(--border);color:var(--fg);border-radius:10px;padding:8px 12px}
.product-list .card{transition:transform .2s ease,box-shadow .2s ease}
.product-list .card:hover{transform:translateY(-4px);box-shadow:0 16px 32px rgba(0,0,0,0.16)}
.product-list .card .heading{font-size:16px;font-weight:600;margin:4px 0}
.product-list .card .price{font-size:14px;color:var(--accent);font-weight:600}

/* WhatsApp Floating Button */
.whatsapp-fab{position:fixed;right:16px;bottom:16px;z-index:60;display:flex;align-items:center;gap:10px}
.whatsapp-fab .wa-btn{display:inline-flex;align-items:center;gap:10px;justify-content:center;height:56px;padding:0 18px;background:#25D366;color:#fff;border-radius:40px;box-shadow:0 8px 24px rgba(0,0,0,.12);animation:wa-float 3s ease-in-out infinite}
.whatsapp-fab .wa-btn svg{width:20px;height:20px;display:block}
@keyframes wa-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
.whatsapp-fab{position:fixed;right:16px;bottom:16px;z-index:60;display:flex;align-items:center;gap:10px}
.whatsapp-fab .tooltip{position:absolute;right:0;bottom:72px;display:inline-block;background:#111111;color:#fff;padding:8px 12px;border-radius:12px;opacity:0;transform:translateY(8px);transition:opacity .2s ease, transform .2s ease;pointer-events:none}
.whatsapp-fab .tooltip:after{content:"";position:absolute;right:16px;bottom:-6px;border-width:6px;border-style:solid;border-color:#111111 transparent transparent transparent}
.whatsapp-fab:hover .tooltip,
.whatsapp-fab:focus-within .tooltip{opacity:1;transform:translateY(0)}
/* İlk girişte kısa bir ipucu gösterimi */
.whatsapp-fab .tooltip{animation:wa-hint 4s ease 1;animation-delay:1s}
@keyframes wa-hint{0%{opacity:0;transform:translateY(4px)}10%{opacity:1;transform:translateY(0)}60%{opacity:1}100%{opacity:0;transform:translateY(4px)}}

/* WA Panel */
.wa-panel{position:absolute;right:0;bottom:72px;width:360px;max-width:calc(100vw - 32px);border-radius:16px;background:#fff;box-shadow:0 12px 32px rgba(0,0,0,.18);border:1px solid #e7e7e7;opacity:0;transform:translate(16px,16px) scale(.96);transform-origin:right bottom;pointer-events:none;transition:opacity .22s ease, transform .22s ease}
.wa-panel-head{background:#25D366;color:#fff;padding:14px 16px;border-radius:16px 16px 0 0;display:flex;justify-content:space-between;align-items:center}
.wa-panel-title{font-weight:600;text-align:center;flex:1}
.wa-close{background:rgba(255,255,255,.2);color:#fff;border:none;width:28px;height:28px;border-radius:50%;cursor:pointer}
.wa-panel-body{padding:16px}
.wa-panel-text{margin-bottom:12px;color:#111111}
.wa-form{display:flex;gap:8px}
.wa-form input{flex:1;border:1px solid #e7e7e7;border-radius:10px;padding:12px 14px}
.wa-send{background:#25D366;color:#fff;border:none;border-radius:10px;padding:0 12px;display:inline-flex;align-items:center;justify-content:center}
.whatsapp-fab.open .wa-panel{opacity:1;transform:translate(0,0) scale(1);pointer-events:auto}
@media (max-width: 767px){.whatsapp-fab .wa-btn .label{display:none}}

/* Product detail */
.product-detail{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:32px;margin:48px 0}
.product-gallery{display:flex;flex-direction:column;gap:16px}
.product-gallery-main img{width:100%;border-radius:20px;object-fit:cover;box-shadow:0 16px 32px rgba(0,0,0,0.2)}
.product-gallery-thumbs{display:flex;gap:12px;flex-wrap:wrap}
.product-gallery-thumbs .thumb{border:1px solid transparent;border-radius:14px;overflow:hidden;padding:0;background:transparent;cursor:pointer;transition:border .2s ease,transform .2s ease}
.product-gallery-thumbs .thumb.active{border-color:var(--primary)}
.product-gallery-thumbs .thumb img{width:90px;height:90px;object-fit:cover;display:block}
.product-gallery-thumbs .thumb:hover{transform:translateY(-2px)}
.product-info{background:var(--card);border:1px solid var(--border);border-radius:20px;padding:24px;display:flex;flex-direction:column;gap:16px;box-shadow:0 24px 48px rgba(0,0,0,0.24)}
.product-info h1{margin:0;font-size:30px}
.product-price{font-size:28px;font-weight:600;color:var(--accent)}
.product-subtitle{margin:0;color:var(--muted)}
.product-description{color:var(--fg);line-height:1.6;display:grid;gap:12px}
.product-features{padding:16px;border:1px solid var(--border);border-radius:14px;background:rgba(255,255,255,0.02)}
.product-features h3{margin:0 0 8px;font-size:18px}
.product-features ul{list-style:disc;padding-left:20px;margin:0;display:grid;gap:6px}
.product-features li{color:var(--fg)}
.product-actions{display:flex;gap:12px;flex-wrap}
.product-actions .btn{min-width:160px;justify-content:center}
.product-actions .btn.secondary{border-color:var(--border)}
.product-actions .btn.whatsapp{background:#25D366;color:#fff;border:none}
.product-actions .btn.whatsapp:hover{background:#1da84d}
@media (max-width: 991px){
  .product-detail{grid-template-columns:1fr;gap:24px}
  .product-gallery-thumbs .thumb img{width:72px;height:72px}
}

/* Cart */
.cart-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(0,1fr);gap:28px;margin:32px 0}
.cart-items{display:flex;flex-direction:column;gap:16px}
.cart-item-card .content{display:flex;gap:18px;align-items:flex-start;justify-content:space-between}
.cart-item-info{display:flex;gap:16px;align-items:flex-start}
.cart-item-meta{display:flex;flex-direction:column;gap:6px}
.cart-item-meta .name{font-size:16px;font-weight:600}
.cart-item-meta .muted{font-size:13px}
.cart-item-actions{display:flex;gap:14px;align-items:center}
.cart-item-actions .btn.secondary{padding:10px 14px;border-radius:30px}
.cart-item-actions .btn.secondary svg{width:14px;height:14px}
.cart-summary{position:sticky;top:100px;align-self:flex-start;border-radius:18px;box-shadow:0 24px 60px rgba(0,0,0,0.12)}
.cart-summary .content{display:flex;flex-direction:column;gap:18px;padding:24px}
.summary-lines{display:flex;flex-direction:column;gap:12px}
.summary-line{display:flex;justify-content:space-between;align-items:center;font-size:15px}
.summary-line.total{font-weight:700;font-size:18px}
.cart-actions{display:flex;gap:12px;flex-wrap}
.cart-actions .btn{flex:1;justify-content:center}
.empty-state{border:1px dashed var(--border);border-radius:16px;padding:32px;text-align:center;display:flex;flex-direction:column;gap:12px;align-items:center;justify-content:center;background:rgba(245,247,250,0.6)}
.empty-state svg{width:42px;height:42px;color:var(--muted)}

/* Checkout */
.checkout-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);gap:32px;margin:32px 0}
.checkout-card{border-radius:18px;box-shadow:0 24px 60px rgba(0,0,0,0.12)}
.checkout-card .content{padding:28px;display:flex;flex-direction:column;gap:24px}
.checkout-form{display:flex;flex-direction:column;gap:18px}
.checkout-form .grid{gap:18px}
.checkout-form label{font-size:14px;font-weight:600;color:var(--fg)}
.checkout-form input,
.checkout-form textarea{border:1px solid var(--border);border-radius:12px;padding:12px 14px;font-family:inherit;font-size:15px;transition:border .2s ease, box-shadow .2s ease}
.checkout-form input:focus,
.checkout-form textarea:focus{outline:none;border-color:#111111;box-shadow:0 0 0 3px rgba(0,0,0,0.12)}
.checkout-summary .summary-items{display:flex;flex-direction:column;gap:16px}
.summary-item{display:flex;justify-content:space-between;gap:16px}
.summary-item .details{display:flex;flex-direction:column;gap:4px}
.summary-item .details .name{font-weight:600}
.summary-footer{display:flex;flex-direction:column;gap:12px;margin-top:12px}
.summary-note{font-size:13px;color:var(--muted);display:flex;gap:8px;align-items:flex-start}
.summary-note svg{width:16px;height:16px;margin-top:2px;color:inherit}
.badge{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:999px;background:rgba(0,0,0,0.08);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:#111111}

/* Auth */
.auth-wrapper{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:40px;align-items:center;margin:40px 0}
.auth-illustration{position:relative;border-radius:24px;overflow:hidden;border:1px solid var(--border);background:linear-gradient(135deg,#f5f5f5 0%,#ffffff 45%,#f5f5f5 100%);min-height:420px;display:flex;justify-content:center;align-items:center;padding:40px;box-shadow:0 30px 60px rgba(0,0,0,0.08)}
.auth-illustration img{max-width:80%;border-radius:20px;box-shadow:0 20px 40px rgba(0,0,0,0.12)}
.auth-illustration .overlay{position:absolute;inset:24px;border:1px dashed rgba(0,0,0,0.12);border-radius:20px;pointer-events:none}
.auth-panel{max-width:460px;margin:0 auto}
.auth-card{border-radius:20px;border:1px solid var(--border);box-shadow:0 24px 60px rgba(0,0,0,0.1);padding:36px;background:#fff;display:flex;flex-direction:column;gap:28px}
.auth-header{display:flex;flex-direction:column;gap:8px}
.auth-header h2{margin:0;font-size:26px}
.auth-header p{margin:0;font-size:14px;color:var(--muted)}
.auth-form{display:flex;flex-direction:column;gap:18px}
.auth-form label{display:flex;flex-direction:column;gap:8px;font-size:14px;font-weight:600;color:var(--fg)}
.auth-form input{border:1px solid var(--border);border-radius:12px;padding:12px 14px;font-size:15px;font-family:inherit;transition:border .2s ease, box-shadow .2s ease}
.auth-form input:focus{outline:none;border-color:#111111;box-shadow:0 0 0 3px rgba(0,0,0,0.12)}
.auth-footer{display:flex;justify-content:space-between;align-items:center;font-size:13px;color:var(--muted);gap:12px;flex-wrap:wrap}
.auth-footer a{text-decoration:underline}
.auth-errors{border:1px solid #e0e0e0;background:#f5f5f5;color:#444444;padding:14px 16px;border-radius:14px;font-size:14px}
.auth-switch{font-size:13px;color:var(--muted);text-align:center}
.auth-switch a{color:#111111;font-weight:600}

/* Alternate Home */
.studio-hero{position:relative;left:50%;width:100vw;margin-left:-50vw;background:#000000;color:#f5f5f5;overflow:hidden}
.studio-hero__layout{max-width:1240px;margin:0 auto;padding:72px 16px;display:grid;grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr);gap:48px;align-items:center}
.studio-hero__visual{position:relative;border-radius:32px;overflow:hidden;min-height:420px;box-shadow:0 30px 80px rgba(8,10,24,0.4)}
.studio-hero__visual img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(0.75)}
.studio-hero__badge{position:absolute;top:24px;left:24px;background:rgba(255,255,255,0.08);backdrop-filter:blur(6px);padding:10px 16px;border-radius:999px;font-size:12px;letter-spacing:0.18em;text-transform:uppercase}
.studio-hero__content{display:flex;flex-direction:column;gap:20px}
.studio-hero__eyebrow{text-transform:uppercase;letter-spacing:0.26em;font-size:12px;color:rgba(248,250,252,0.65)}
.studio-hero__content h1{margin:0;font-size:40px;font-weight:600;line-height:1.1}
.studio-hero__content p{margin:0;font-size:16px;color:rgba(248,250,252,0.78);line-height:1.7}
.studio-hero__meta{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:10px}
.studio-hero__meta li{padding:8px 14px;border-radius:999px;background:rgba(248,250,252,0.1);font-size:12px;letter-spacing:0.08em;text-transform:uppercase;color:rgba(248,250,252,0.78)}
.studio-hero__actions{display:flex;gap:12px;flex-wrap}
.studio-hero__actions .btn{background:#f5f5f5;color:#000000;border:none}
.studio-hero__actions .btn.secondary{background:transparent;color:#f5f5f5;border:1px solid rgba(248,250,252,0.4)}

.studio-shell{max-width:1240px;margin:0 auto;padding:80px 16px;display:flex;flex-direction:column;gap:72px}
.studio-chip-row{display:flex;gap:10px;flex-wrap:wrap}
.studio-chip-row span{padding:6px 12px;border-radius:999px;background:rgba(0,0,0,0.08);font-size:12px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:#111111}
.studio-section{display:flex;flex-direction:column;gap:24px}
.studio-section__head{display:flex;justify-content:space-between;align-items:flex-end;gap:16px}
.studio-section__head h2{margin:0;font-size:28px;font-weight:600}
.studio-section__head p{margin:0;color:var(--muted);font-size:14px;max-width:420px}
.studio-link{display:inline-flex;align-items:center;gap:8px;text-decoration:none;color:#111111;font-weight:600;font-size:14px;border-bottom:1px solid rgba(0,0,0,0.2);padding-bottom:2px}

.studio-collection-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.studio-collection-card{border:1px solid var(--border);border-radius:20px;padding:20px;background:#fff;display:flex;flex-direction:column;gap:14px;transition:transform .2s ease, box-shadow .2s ease}
.studio-collection-card:hover{transform:translateY(-4px);box-shadow:0 24px 48px rgba(0,0,0,0.12)}
.studio-collection-card img{width:100%;height:190px;object-fit:cover;border-radius:14px}
.studio-collection-card strong{font-size:17px}
.studio-collection-card span{font-size:13px;color:var(--muted);line-height:1.5}

.studio-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.studio-product-card{border:1px solid var(--border);border-radius:20px;overflow:hidden;background:#fff;display:flex;flex-direction:column}
.studio-product-card img{width:100%;height:220px;object-fit:cover}
.studio-product-card .body{padding:18px;display:flex;flex-direction:column;gap:8px}
.studio-product-card .body span{font-size:13px;color:var(--muted)}
.studio-product-card .body strong{font-size:16px}
.studio-product-card .price{font-weight:600;font-size:15px}

.studio-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.studio-service-card{border:1px solid var(--border);border-radius:18px;padding:22px;background:#fbfbfb;display:flex;flex-direction:column;gap:10px;box-shadow:0 14px 28px rgba(0,0,0,0.08)}
.studio-service-card h3{margin:0;font-size:18px;color:#111111}
.studio-service-card p{margin:0;color:#555555;font-size:14px;line-height:1.6}

.studio-lookbook{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.studio-lookbook__item{position:relative;border-radius:22px;overflow:hidden;height:320px;box-shadow:0 24px 48px rgba(0,0,0,0.16)}
.studio-lookbook__item img{width:100%;height:100%;object-fit:cover;filter:brightness(0.85)}
.studio-lookbook__item span{position:absolute;left:20px;bottom:20px;color:#fff;font-weight:600;font-size:16px}

.studio-testimonial-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.studio-testimonial{border:1px solid var(--border);border-radius:20px;padding:22px;background:#fff;display:flex;flex-direction:column;gap:16px}
.studio-testimonial p{margin:0;color:var(--muted);line-height:1.7}
.studio-testimonial .person{display:flex;gap:12px;align-items:center}
.studio-testimonial .avatar{width:44px;height:44px;border-radius:999px;background:rgba(0,0,0,0.08);display:flex;align-items:center;justify-content:center;font-weight:600}
.studio-testimonial .info{display:flex;flex-direction:column;font-size:13px;color:var(--muted)}

.studio-brand-strip{display:flex;gap:24px;align-items:center;flex-wrap:wrap;justify-content:space-between;border:1px solid var(--border);border-radius:20px;padding:24px;background:#fff}
.studio-brand-strip img{max-height:34px;filter:grayscale(1);opacity:0.55;transition:opacity .2s ease, filter .2s ease}
.studio-brand-strip img:hover{filter:none;opacity:1}

.studio-journal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.studio-journal-card{border:1px solid var(--border);border-radius:20px;overflow:hidden;background:#fff;display:flex;flex-direction:column}
.studio-journal-card img{width:100%;height:190px;object-fit:cover}
.studio-journal-card .body{padding:18px;display:flex;flex-direction:column;gap:10px}
.studio-journal-card h3{margin:0;font-size:18px;color:#111111}
.studio-journal-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.6}
.studio-journal-card a{color:#111111;font-weight:600;text-decoration:underline}

.studio-newsletter{border-radius:24px;background:linear-gradient(135deg,#f5f5f5 0%,#ffffff 100%);border:1px solid rgba(0,0,0,0.1);padding:32px;display:flex;gap:24px;align-items:center;box-shadow:0 18px 42px rgba(0,0,0,0.08);flex-wrap:wrap}
.studio-newsletter h3{margin:0;font-size:24px}
.studio-newsletter p{margin:0;color:var(--muted)}
.studio-newsletter form{display:flex;gap:12px;flex-wrap:wrap}
.studio-newsletter input{border:1px solid var(--border);border-radius:14px;padding:12px 16px;min-width:260px;font-size:14px}
.studio-newsletter button{border-radius:14px;padding:12px 18px;background:#111111;color:#fff;border:none}

.studio-cta{border-radius:26px;background:linear-gradient(120deg,#111111 0%,#222222 100%);color:#fff;padding:36px;display:flex;flex-direction:column;gap:16px;align-items:flex-start;box-shadow:0 32px 80px rgba(0,0,0,0.18)}
.studio-cta h3{margin:0;font-size:26px}
.studio-cta p{margin:0;color:rgba(255,255,255,0.85)}
.studio-cta .studio-hero__actions{justify-content:flex-start}

.alt-ticker{display:flex;gap:8px;flex-wrap:wrap}
.alt-ticker span{padding:6px 14px;border-radius:999px;background:rgba(0,0,0,0.08);font-size:12px;font-weight:600;color:#111111}

.alt-section{display:flex;flex-direction:column;gap:18px}
.alt-section-header{display:flex;justify-content:space-between;align-items:center;gap:16px}
.alt-section-header h3{margin:0;font-size:22px}
.alt-section-header p{margin:0;color:var(--muted);font-size:14px}

.alt-category-track{display:flex;gap:14px;overflow:auto;padding-bottom:4px;scroll-snap-type:x mandatory}
.alt-category-card{min-width:200px;scroll-snap-align:start;border:1px solid var(--border);border-radius:18px;overflow:hidden;background:#fff;display:flex;flex-direction:column;gap:0;box-shadow:0 20px 40px rgba(0,0,0,0.06)}
.alt-category-card img{width:100%;height:130px;object-fit:cover}
.alt-category-card .info{padding:14px;font-weight:600}

.alt-featured-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.alt-featured-card{border:1px solid var(--border);border-radius:20px;overflow:hidden;background:#fff;display:flex;flex-direction:column;box-shadow:0 24px 48px rgba(0,0,0,0.08);transition:transform .2s ease, box-shadow .2s ease}
.alt-featured-card:hover{transform:translateY(-4px);box-shadow:0 32px 60px rgba(0,0,0,0.12)}
.alt-featured-card img{width:100%;height:210px;object-fit:cover}
.alt-featured-card .content{padding:18px;display:flex;flex-direction:column;gap:8px}
.alt-featured-card .content .muted{font-size:13px}

.alt-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.alt-benefit-card{border:1px solid var(--border);border-radius:18px;padding:20px;background:#fff;display:flex;flex-direction:column;gap:10px}
.alt-benefit-card h4{margin:0;font-size:18px}
.alt-benefit-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.6}

.alt-newsletter{border-radius:24px;overflow:hidden;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,0.9fr);background:linear-gradient(135deg,#111111 0%,#222222 55%,#000000 100%);color:#fff}
.alt-newsletter .left{padding:32px;display:flex;flex-direction:column;gap:16px}
.alt-newsletter .left h3{margin:0;font-size:24px}
.alt-newsletter .left p{margin:0;color:rgba(255,255,255,0.72)}
.alt-newsletter .ticker{display:flex;flex-wrap:wrap;gap:10px}
.alt-newsletter .ticker span{background:rgba(255,255,255,0.14);padding:6px 12px;border-radius:999px;font-size:12px}
.alt-newsletter form{padding:32px;display:flex;flex-direction:column;gap:12px;align-items:flex-start}
.alt-newsletter form input{width:100%;border-radius:14px;border:none;padding:14px 16px;font-size:15px;font-family:inherit}
.alt-newsletter form .btn{background:#f5f5f5;color:#111;align-self:flex-start}

@media (max-width: 1023px){
  .cart-grid{grid-template-columns:1fr;gap:24px}
  .cart-summary{position:static;width:100%}
  .checkout-grid{grid-template-columns:1fr}
  .auth-wrapper{grid-template-columns:1fr;gap:32px}
  .auth-illustration{display:none}
  .auth-panel{max-width:520px;width:100%}
  .studio-hero__layout{grid-template-columns:1fr;gap:32px;padding:56px 16px}
  .studio-hero__visual{min-height:360px}
  .studio-shell{gap:56px}
  .studio-collection-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .studio-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .studio-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .studio-lookbook{grid-template-columns:repeat(2,minmax(0,1fr))}
  .studio-testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .studio-journal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .studio-brand-strip{justify-content:center}
}

@media (max-width: 767px){
  .cart-item-card .content{flex-direction:column;align-items:stretch;gap:16px}
  .cart-item-info{align-items:center}
  .cart-actions .btn{flex:unset;width:100%}
  .checkout-card .content{padding:22px}
  .checkout-form .grid{grid-template-columns:1fr}
  .auth-card{padding:28px}
  .studio-hero__layout{padding:48px 16px}
  .studio-hero__content h1{font-size:32px}
  .studio-section__head{flex-direction:column;align-items:flex-start}
  .studio-collection-grid,.studio-product-grid,.studio-service-grid,.studio-lookbook,.studio-testimonial-grid,.studio-journal-grid{grid-template-columns:1fr}
  .studio-newsletter{flex-direction:column;align-items:flex-start}
  .studio-newsletter form{flex-direction:column;align-items:stretch;width:100%}
  .studio-newsletter input{width:100%}
  .studio-brand-strip{gap:18px}
  .studio-cta{padding:28px}
}
/* ============================================
   LAREX SHOP - MODERN E-COMMERCE HOME v2
   ============================================ */

:root {
  --primary: #000000;
  --accent: #333333;
  --bg: #ffffff;
  --surface: #f5f5f5;
  --border: #d9d9d9;
  --text: #111111;
  --text-muted: #666666;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header-v2 {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-v2__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-v2__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.header-v2__logo img {
  height: 40px;
  width: auto;
}

.header-v2__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-v2__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.header-v2__nav a:hover {
  color: var(--accent);
}

.header-v2__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-v2__nav a:hover::after {
  width: 100%;
}

.header-v2__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-v2__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  color: var(--text);
}

.header-v2__icon-btn:hover {
  background: var(--surface);
  color: var(--accent);
}

.header-v2__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-v2__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.header-v2__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .header-v2__container {
    padding: 0 40px;
  }
  
  .header-v2__nav {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-v2__container {
    padding: 0 24px;
    height: 64px;
  }
  
  .header-v2__logo {
    font-size: 20px;
  }
  
  .header-v2__logo img {
    height: 32px;
  }
  
  .header-v2__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  
  .header-v2__nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .header-v2__mobile-toggle {
    display: flex;
  }
  
  .header-v2__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  
  .header-v2__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header-v2__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* ============================================
   HERO SECTION - Split Layout
   ============================================ */
.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #eeeeee 100%);
  position: relative;
  overflow: hidden;
}

.hero-v2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-v2__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-v2__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-v2__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-v2__actions .btn {
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-v2__actions .btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.hero-v2__actions .btn-primary:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-v2__actions .btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.hero-v2__actions .btn-secondary:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.hero-v2__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.hero-v2__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  animation: fadeInRight 0.8s ease 0.4s both;
}

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

.hero-v2__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  animation: pulse 2s ease-in-out infinite;
}

.hero-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-v2__stat {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-v2__stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.hero-v2__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
  background: var(--primary);
  color: white;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.ticker-bar__track {
  display: flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.ticker-bar__item::before {
  content: '✦';
  color: var(--accent);
}

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

/* ============================================
   SECTION CONTAINER
   ============================================ */
.section-v2 {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-v2__header {
  text-align: center;
  margin-bottom: 56px;
}

.section-v2__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-v2__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-v2__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.category-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.category-card-v2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card-v2:hover .category-card-v2__image {
  transform: scale(1.05);
}

.category-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}

.category-card-v2__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-card-v2__count {
  font-size: 14px;
  opacity: 0.9;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.product-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card-v2__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
}

.product-card-v2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card-v2:hover .product-card-v2__image {
  transform: scale(1.08);
}

.product-card-v2__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-v2__content {
  padding: 20px;
}

.product-card-v2__category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.product-card-v2__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-v2__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-v2__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.product-card-v2__cart-btn {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.product-card-v2__cart-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  background: var(--surface);
  padding: 60px;
  border-radius: var(--radius-xl);
}

.feature-card-v2 {
  text-align: center;
}

.feature-card-v2__icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: var(--shadow-md);
}

.feature-card-v2__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-card-v2__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   BANNER PROMO
   ============================================ */
.banner-promo-v2 {
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-promo-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.banner-promo-v2__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.banner-promo-v2__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.banner-promo-v2__subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.banner-promo-v2__cta {
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.banner-promo-v2__cta:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card-v2 {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card-v2:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-v2__stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-card-v2__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-card-v2__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card-v2__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card-v2__name {
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 2px;
}

.testimonial-card-v2__location {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-v2 {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
}

.newsletter-v2__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.newsletter-v2__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.newsletter-v2__form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-v2__input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-v2__input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-v2__submit {
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-v2__submit:hover {
  background: #111111;
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-modal.active {
  display: block;
  opacity: 1;
}

.search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.search-modal__content {
  position: relative;
  max-width: 800px;
  margin: 80px auto 0;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: all 0.3s ease;
}

.search-modal__close:hover {
  background: var(--gray-200);
  transform: rotate(90deg);
}

.search-modal__header {
  margin-bottom: 24px;
}

.search-modal__header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.search-modal__header p {
  color: var(--text-muted);
  font-size: 14px;
}

.search-modal__form {
  margin-bottom: 24px;
}

.search-modal__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-modal__input-wrapper i {
  position: absolute;
  left: 20px;
  font-size: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-modal__input-wrapper input {
  width: 100%;
  padding: 16px 20px 16px 56px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-modal__input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(51, 51, 51, 0.1);
}

.search-modal__results {
  min-height: 200px;
}

.search-modal__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.search-modal__empty i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.search-modal__empty p {
  font-size: 14px;
}

.search-modal__loading {
  text-align: center;
  padding: 40px 20px;
}

.search-modal__loading i {
  font-size: 32px;
  color: var(--primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.search-modal__product {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}

.search-modal__product:hover {
  background: var(--gray-50);
  transform: translateX(4px);
}

.search-modal__product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-modal__product-info {
  flex: 1;
}

.search-modal__product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.search-modal__product-category {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.search-modal__product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.search-modal__no-results {
  text-align: center;
  padding: 40px 20px;
}

.search-modal__no-results i {
  font-size: 48px;
  color: var(--text-muted);
  opacity: 0.3;
  margin-bottom: 16px;
}

.search-modal__no-results h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.search-modal__no-results p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .search-modal__content {
    margin: 20px;
    padding: 24px;
    max-height: calc(100vh - 40px);
  }
  
  .search-modal__header h2 {
    font-size: 22px;
  }
  
  .search-modal__product {
    flex-direction: column;
  }
  
  .search-modal__product-image {
    width: 100%;
    height: 200px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-v2__content {
    padding: 60px 40px;
  }
  
  .hero-v2__visual {
    padding: 40px;
  }
  
  .section-v2 {
    padding: 60px 40px;
  }
  
  .banner-promo-v2 {
    padding: 60px 40px;
  }
  
  .newsletter-v2 {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .hero-v2__content {
    padding: 40px 24px;
  }
  
  .hero-v2__stats {
    grid-template-columns: 1fr;
  }
  
  .hero-v2__actions {
    flex-direction: column;
  }
  
  .hero-v2__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-v2 {
    padding: 40px 24px;
  }
  
  .product-grid-v2 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  
  .category-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .features-v2 {
    padding: 40px 24px;
    gap: 24px;
  }
  
  .banner-promo-v2 {
    padding: 40px 24px;
  }
  
  .newsletter-v2 {
    padding: 32px 24px;
  }
  
  .newsletter-v2__form {
    flex-direction: column;
  }
  
  .testimonials-v2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON & CHAT PANEL
   ============================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

.whatsapp-fab .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-float 3s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.whatsapp-fab .wa-btn:hover {
  background: #20ba5a;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab .wa-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-fab .label {
  font-weight: 600;
  font-size: 15px;
}

.whatsapp-fab .tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.whatsapp-fab .tooltip::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  transform: rotate(45deg);
}

.whatsapp-fab:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Chat Panel */
.wa-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: 360px;
  max-width: calc(100vw - 48px);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.whatsapp-fab.open .wa-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-chat-panel__header {
  background: #25D366;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-chat-panel__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-chat-panel__avatar svg {
  width: 28px;
  height: 28px;
  color: #25D366;
}

.wa-chat-panel__info {
  flex: 1;
}

.wa-chat-panel__name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.wa-chat-panel__status {
  font-size: 13px;
  opacity: 0.9;
}

.wa-chat-panel__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wa-chat-panel__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wa-chat-panel__body {
  padding: 20px;
  background: #f2f2f2;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}

.wa-chat-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  position: relative;
}

.wa-chat-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent white transparent transparent;
}

.wa-chat-bubble__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 4px;
}

.wa-chat-bubble__time {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.wa-chat-panel__footer {
  padding: 16px;
  background: white;
  border-top: 1px solid #d9d9d9;
}

.wa-chat-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.wa-chat-form__input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  min-height: 44px;
  max-height: 120px;
  transition: var(--transition);
}

.wa-chat-form__input:focus {
  outline: none;
  border-color: #25D366;
}

.wa-chat-form__submit {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.wa-chat-form__submit:hover {
  background: #20ba5a;
  transform: scale(1.05);
}

.wa-chat-form__submit:disabled {
  background: var(--border);
  cursor: not-allowed;
  transform: scale(1);
}

@keyframes wa-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
  }
  
  .whatsapp-fab .wa-btn {
    padding: 14px 20px;
  }
  
  .whatsapp-fab .label {
    display: none;
  }
  
  .whatsapp-fab .wa-btn svg {
    width: 28px;
    height: 28px;
  }
  
  .wa-chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-80 {
  margin-top: 80px;
}


/* ============================================
   NEW PAGE STYLES - PRODUCTS, CATEGORIES, PRODUCT DETAIL
   ============================================ */

/* Page Header */
.page-header-v2 {
  background: linear-gradient(135deg, #333333 0%, #111111 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

.page-header-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-v2__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.page-header-v2__breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.page-header-v2__breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.page-header-v2__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}

.page-header-v2__subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filter Bar */
.filter-bar-v2 {
  background: white;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
  margin-bottom: 40px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.filter-bar-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.filter-bar-v2__count {
  font-size: 14px;
  color: #666666;
}

.filter-bar-v2__form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-bar-v2__label {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-bar-v2__select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-bar-v2__select:hover {
  border-color: #cdcdcd;
}

.filter-bar-v2__select:focus {
  outline: none;
  border-color: #444444;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Products Section */
.products-section-v2 {
  padding: 0 20px 80px;
}

.products-section-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Categories Section */
.categories-section-v2 {
  padding: 0 20px 80px;
}

.categories-section-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.categories-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card-v2 {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.category-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.category-card-v2__image-wrapper {
  position: relative;
  padding-top: 66.67%;
  overflow: hidden;
}

.category-card-v2__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card-v2:hover .category-card-v2__image {
  transform: scale(1.1);
}

.category-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.category-card-v2__count {
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.category-card-v2__content {
  padding: 24px;
}

.category-card-v2__name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111111;
}

.category-card-v2__description {
  font-size: 14px;
  color: #666666;
  margin: 0 0 16px;
  line-height: 1.6;
}

.category-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s;
}

.category-card-v2:hover .category-card-v2__link {
  gap: 12px;
}

/* Empty State */
.empty-state-v2 {
  text-align: center;
  padding: 80px 20px;
}

.empty-state-v2 i {
  font-size: 64px;
  color: #cdcdcd;
  margin-bottom: 24px;
}

.empty-state-v2 h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
}

.empty-state-v2 p {
  font-size: 16px;
  color: #666666;
  margin: 0 0 32px;
}

/* CTA Section */
.cta-section-v2 {
  background: linear-gradient(135deg, #333333 0%, #111111 100%);
  padding: 80px 20px;
  margin-top: 80px;
}

.cta-section-v2__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-section-v2__title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px;
}

.cta-section-v2__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

.cta-section-v2__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-v2--primary {
  background: #444444;
  color: white;
}

.btn-v2--primary:hover {
  background: #444444;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-v2--secondary {
  background: white;
  color: #444444;
  border: 2px solid #444444;
}

.btn-v2--secondary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.btn-v2--whatsapp {
  background: #25D366;
  color: white;
}

.btn-v2--whatsapp:hover {
  background: #4d4d4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-v2--outline {
  background: transparent;
  color: #444444;
  border: 2px solid #d9d9d9;
}

.btn-v2--outline:hover {
  border-color: #444444;
  background: #f5f5f5;
}

.btn-v2--large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-v2--block {
  width: 100%;
}

/* Product Detail */
.breadcrumb-v2 {
  background: #f5f5f5;
  padding: 16px 20px;
  border-bottom: 1px solid #d9d9d9;
}

.breadcrumb-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666666;
}

.breadcrumb-v2__container a {
  color: #444444;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-v2__container a:hover {
  color: #444444;
  text-decoration: underline;
}

.product-detail-v2 {
  padding: 48px 20px;
}

.product-detail-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Product Gallery */
.product-gallery-v2__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  padding-top: 100%;
}

.product-gallery-v2__main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-v2__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-gallery-v2__zoom:hover {
  background: white;
  transform: scale(1.1);
}

.product-gallery-v2__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.product-gallery-v2__thumb {
  position: relative;
  padding-top: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: #f5f5f5;
}

.product-gallery-v2__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-v2__thumb:hover,
.product-gallery-v2__thumb.active {
  border-color: #444444;
}

/* Product Info */
.product-detail-v2__header {
  margin-bottom: 24px;
}

.product-detail-v2__category {
  display: inline-block;
  padding: 6px 12px;
  background: #f2f2f2;
  color: #444444;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.product-detail-v2__category:hover {
  background: #d9d9d9;
}

.product-detail-v2__title {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px;
  line-height: 1.3;
}

.product-detail-v2__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-v2__price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #444444;
}

.product-detail-v2__price-tax {
  font-size: 14px;
  color: #666666;
}

.product-detail-v2__description {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 32px;
}

/* Product Features */
.product-detail-v2__features {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.product-detail-v2__features-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-v2__features-title i {
  color: #444444;
}

.product-detail-v2__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.product-detail-v2__features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333333;
}

.product-detail-v2__features-list i {
  color: #4d4d4d;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Product Actions */
.product-detail-v2__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.product-detail-v2__extra-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

/* Product Tabs */
.product-detail-v2__tabs {
  border-top: 1px solid #d9d9d9;
  padding-top: 32px;
}

.product-tabs-v2 {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 24px;
}

.product-tabs-v2__tab {
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #666666;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-tabs-v2__tab:hover {
  color: #444444;
}

.product-tabs-v2__tab.active {
  color: #444444;
  border-bottom-color: #444444;
}

.product-tabs-v2__panel {
  display: none;
}

.product-tabs-v2__panel.active {
  display: block;
}

.product-detail-v2__full-description {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

.product-detail-v2__shipping-info {
  display: grid;
  gap: 20px;
}

.shipping-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.shipping-info-item i {
  font-size: 24px;
  color: #444444;
  flex-shrink: 0;
}

.shipping-info-item strong {
  display: block;
  font-size: 16px;
  color: #111111;
  margin-bottom: 4px;
}

.shipping-info-item p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* Related Products */
.related-products-v2 {
  background: #f5f5f5;
  padding: 80px 20px;
}

.related-products-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.related-products-v2__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.related-products-v2__title {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.related-products-v2__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444444;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.related-products-v2__link:hover {
  gap: 12px;
}

.related-products-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Error State */
.error-state-v2 {
  padding: 120px 20px;
  text-align: center;
}

.error-state-v2__container {
  max-width: 600px;
  margin: 0 auto;
}

.error-state-v2__icon {
  font-size: 80px;
  color: #cdcdcd;
  margin-bottom: 24px;
}

.error-state-v2__title {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
}

.error-state-v2__message {
  font-size: 18px;
  color: #666666;
  margin: 0 0 32px;
}

.error-state-v2__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #111111;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-notification i {
  color: #4d4d4d;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .categories-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-products-v2__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header-v2 {
    padding: 60px 20px 40px;
  }
  
  .page-header-v2__title {
    font-size: 32px;
  }
  
  .page-header-v2__subtitle {
    font-size: 16px;
  }
  
  .filter-bar-v2__container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .products-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .categories-grid-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-detail-v2__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .product-detail-v2__title {
    font-size: 24px;
  }
  
  .product-detail-v2__price-amount {
    font-size: 28px;
  }
  
  .product-detail-v2__actions {
    grid-template-columns: 1fr;
  }
  
  .related-products-v2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-products-v2__title {
    font-size: 24px;
  }
  
  .cta-section-v2__title {
    font-size: 28px;
  }
  
  .cta-section-v2__actions {
    flex-direction: column;
  }
  
  .cta-section-v2__actions .btn-v2 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .product-gallery-v2__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   CART, CHECKOUT, AUTH PAGES
   ============================================ */

/* Small Page Header Variant */
.page-header-v2--small {
  padding: 60px 20px 40px;
}

/* Cart Section */
.cart-section-v2 {
  padding: 48px 20px 80px;
}

.cart-section-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Cart Empty State */
.cart-empty-v2 {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-empty-v2__icon {
  font-size: 80px;
  color: #cdcdcd;
  margin-bottom: 24px;
}

.cart-empty-v2__title {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
}

.cart-empty-v2__message {
  font-size: 16px;
  color: #666666;
  margin: 0 0 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cart-empty-v2__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cart Layout */
.cart-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Cart Items */
.cart-items-v2 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cart-items-v2__header {
  padding: 24px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items-v2__title {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-items-v2__title i {
  color: #444444;
}

.cart-items-v2__count {
  background: #f2f2f2;
  color: #333333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.cart-items-v2__list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-items-v2__footer {
  padding: 20px 24px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

/* Cart Item */
.cart-item-v2 {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 12px;
  transition: all 0.2s;
}

.cart-item-v2:hover {
  background: #f2f2f2;
}

.cart-item-v2__image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.cart-item-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-v2__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-v2__name {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

.cart-item-v2__price {
  font-size: 14px;
  color: #666666;
}

.cart-item-v2__quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 8px;
  padding: 4px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f2f2f2;
  color: #333333;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #d9d9d9;
  color: #111111;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

.cart-item-v2__total {
  min-width: 100px;
  text-align: right;
}

.cart-item-v2__total-price {
  font-size: 18px;
  font-weight: 700;
  color: #444444;
}

.cart-item-v2__remove {
  width: 36px;
  height: 36px;
  border: none;
  background: #eeeeee;
  color: #444444;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-item-v2__remove:hover {
  background: #e6e6e6;
  transform: scale(1.1);
}

/* Cart Summary */
.cart-summary-v2 {
  position: sticky;
  top: 100px;
}

.cart-summary-v2__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.cart-summary-v2__title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 20px;
}

.cart-summary-v2__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 16px;
}

.cart-summary-v2__line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #333333;
}

.cart-summary-v2__shipping {
  color: #666666;
  font-size: 14px;
}

.free-badge {
  background: #f5f5f5;
  color: #4d4d4d;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

.cart-summary-v2__total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 2px solid #d9d9d9;
  margin-bottom: 20px;
}

.cart-summary-v2__total span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.cart-summary-v2__total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #444444;
}

.cart-summary-v2__free-shipping {
  background: #eeeeee;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #333333;
}

.cart-summary-v2__free-shipping--active {
  background: #f5f5f5;
  border-color: #e5e5e5;
  color: #333333;
}

.cart-summary-v2__free-shipping i {
  margin-top: 2px;
  flex-shrink: 0;
}

.cart-summary-v2__note {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 12px;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #666666;
}

.cart-summary-v2__note i {
  color: #444444;
  margin-top: 2px;
  flex-shrink: 0;
}

.cart-summary-v2__features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d9d9d9;
  display: grid;
  gap: 12px;
}

.feature-item-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333333;
}

.feature-item-v2 i {
  color: #4d4d4d;
  font-size: 16px;
}

/* Checkout Steps */
.checkout-steps-v2 {
  background: white;
  padding: 32px 20px;
  border-bottom: 1px solid #d9d9d9;
}

.checkout-steps-v2__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.checkout-step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.checkout-step-v2__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
}

.checkout-step-v2--active .checkout-step-v2__number {
  background: #444444;
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.checkout-step-v2--completed .checkout-step-v2__number {
  background: #4d4d4d;
  color: white;
}

.checkout-step-v2__label {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
}

.checkout-step-v2--active .checkout-step-v2__label {
  color: #444444;
}

.checkout-step-v2--completed .checkout-step-v2__label {
  color: #4d4d4d;
}

.checkout-step-v2__line {
  width: 80px;
  height: 2px;
  background: #d9d9d9;
  margin: 0 16px;
  align-self: flex-start;
  margin-top: 24px;
}

/* Checkout Section */
.checkout-section-v2 {
  padding: 48px 20px 80px;
  background: #f5f5f5;
}

.checkout-section-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

/* Checkout Form */
.checkout-form-v2__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.checkout-form-v2__header {
  margin-bottom: 24px;
}

.checkout-form-v2__title {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-form-v2__title i {
  color: #444444;
}

.checkout-form-v2__subtitle {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.checkout-form-v2__divider {
  height: 1px;
  background: #d9d9d9;
  margin: 32px 0;
}

/* Form Styles */
.form-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-v2__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-v2__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-v2__label {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-v2__label i {
  color: #444444;
  width: 16px;
}

.form-v2__input,
.form-v2__textarea {
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 15px;
  color: #111111;
  transition: all 0.2s;
  font-family: inherit;
}

.form-v2__input:focus,
.form-v2__textarea:focus {
  outline: none;
  border-color: #444444;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-v2__textarea {
  resize: vertical;
  min-height: 80px;
}

.form-v2__hint {
  font-size: 12px;
  color: #999999;
}

.form-v2__remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-v2__forgot {
  font-size: 14px;
  color: #444444;
  text-decoration: none;
  font-weight: 600;
}

.form-v2__forgot:hover {
  text-decoration: underline;
}

.form-v2__checkbox {
  margin-top: 8px;
}

.checkbox-v2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}

.checkbox-v2 input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-v2 a {
  color: #444444;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-v2 a:hover {
  text-decoration: underline;
}

/* Checkout Info */
.checkout-info-v2 {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.checkout-info-v2__item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 10px;
}

.checkout-info-v2__item i {
  font-size: 24px;
  color: #444444;
  flex-shrink: 0;
}

.checkout-info-v2__item strong {
  display: block;
  font-size: 15px;
  color: #111111;
  margin-bottom: 4px;
}

.checkout-info-v2__item p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

/* Checkout Summary */
.checkout-summary-v2 {
  position: sticky;
  top: 100px;
}

.checkout-summary-v2__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.checkout-summary-v2__title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 20px;
}

.checkout-summary-v2__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.checkout-summary-v2__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 10px;
}

.checkout-summary-v2__item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
}

.checkout-summary-v2__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-summary-v2__item-name {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.checkout-summary-v2__item-qty {
  font-size: 12px;
  color: #666666;
}

.checkout-summary-v2__item-price {
  font-size: 15px;
  font-weight: 700;
  color: #444444;
}

.checkout-summary-v2__totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 16px;
}

.checkout-summary-v2__line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #333333;
}

.checkout-summary-v2__total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 2px solid #d9d9d9;
}

.checkout-summary-v2__total span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.checkout-summary-v2__total span:last-child {
  font-size: 22px;
  font-weight: 700;
  color: #444444;
}

.checkout-summary-v2__note {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #666666;
}

.checkout-summary-v2__note i {
  color: #444444;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkout-summary-v2__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: #444444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.checkout-summary-v2__back:hover {
  color: #444444;
}

/* Auth Section */
.auth-section-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f5f5f5;
}

.auth-section-v2__container {
  width: 100%;
  max-width: 1200px;
}

.auth-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  min-height: 700px;
}

/* Auth Illustration */
.auth-illustration-v2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.auth-illustration-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  z-index: 1;
}

.auth-illustration-v2__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-illustration-v2__content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.auth-illustration-v2__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.auth-illustration-v2__subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 40px;
}

.auth-illustration-v2__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.auth-feature-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.auth-feature-v2 i {
  font-size: 20px;
  flex-shrink: 0;
}

/* Auth Form */
.auth-form-v2 {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-v2__card {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

.auth-form-v2__header {
  margin-bottom: 32px;
}

.auth-form-v2__logo {
  display: inline-block;
  margin-bottom: 24px;
}

.auth-form-v2__logo img {
  height: 32px;
}

.auth-form-v2__title {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 8px;
}

.auth-form-v2__subtitle {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.auth-alert-v2 {
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
}

.auth-alert-v2--error {
  background: #eeeeee;
  color: #333333;
  border: 1px solid #e6e6e6;
}

.auth-alert-v2 i {
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-alert-v2 p {
  margin: 0;
  font-size: 14px;
}

.auth-divider-v2 {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.auth-divider-v2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #d9d9d9;
}

.auth-divider-v2 span {
  position: relative;
  background: white;
  padding: 0 16px;
  color: #999999;
  font-size: 14px;
}

.auth-social-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-social-v2__btn {
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: white;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.auth-social-v2__btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #cdcdcd;
}

.auth-social-v2__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-social-v2__btn--google i {
  color: #444444;
}

.auth-social-v2__btn--facebook i {
  color: #333333;
}

.auth-form-v2__footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d9d9d9;
}

.auth-form-v2__footer p {
  margin: 0;
  color: #666666;
  font-size: 15px;
}

.auth-form-v2__footer a {
  color: #444444;
  text-decoration: none;
  font-weight: 600;
}

.auth-form-v2__footer a:hover {
  text-decoration: underline;
}

.auth-form-v2__back {
  margin-top: 24px;
  text-align: center;
}

.auth-form-v2__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.auth-form-v2__back a:hover {
  color: #444444;
}

/* Responsive */
@media (max-width: 1024px) {
  .cart-layout-v2 {
    grid-template-columns: 1fr 340px;
  }
  
  .checkout-layout-v2 {
    grid-template-columns: 1fr 360px;
  }
}

@media (max-width: 768px) {
  .cart-layout-v2,
  .checkout-layout-v2 {
    grid-template-columns: 1fr;
  }
  
  .cart-summary-v2,
  .checkout-summary-v2 {
    position: static;
  }
  
  .cart-item-v2 {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
  
  .cart-item-v2__image {
    width: 60px;
    height: 60px;
  }
  
  .cart-item-v2__quantity,
  .cart-item-v2__total,
  .cart-item-v2__remove {
    grid-column: 2;
  }
  
  .cart-item-v2__quantity {
    justify-self: start;
  }
  
  .cart-item-v2__total {
    text-align: left;
  }
  
  .cart-items-v2__footer {
    flex-direction: column;
  }
  
  .form-v2__row {
    grid-template-columns: 1fr;
  }
  
  .checkout-steps-v2__container {
    gap: 8px;
  }
  
  .checkout-step-v2__line {
    width: 40px;
    margin: 0 8px;
  }
  
  .checkout-step-v2__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .checkout-step-v2__label {
    font-size: 12px;
  }
  
  .auth-layout-v2 {
    grid-template-columns: 1fr;
  }
  
  .auth-illustration-v2 {
    display: none;
  }
  
  .auth-form-v2 {
    padding: 40px 24px;
  }
  
  .auth-social-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cart-empty-v2__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cart-empty-v2__actions .btn-v2 {
    width: 100%;
  }
  
  .checkout-form-v2__card {
    padding: 24px;
  }
}

/* ============================================
   ACCOUNT / USER DASHBOARD
   ============================================ */

/* Account Section */
.account-section-v2 {
  padding: 48px 20px 80px;
  background: #f5f5f5;
}

.account-section-v2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.account-layout-v2 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Account Sidebar */
.account-sidebar-v2 {
  position: sticky;
  top: 100px;
}

.account-sidebar-v2__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.account-sidebar-v2__user {
  padding: 24px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.account-sidebar-v2__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333333 0%, #111111 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.account-sidebar-v2__info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.account-sidebar-v2__info p {
  font-size: 13px;
  color: #666666;
  margin: 0;
  word-break: break-all;
}

.account-sidebar-v2__nav {
  display: flex;
  flex-direction: column;
}

.account-sidebar-v2__link {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.account-sidebar-v2__link:hover {
  background: #f5f5f5;
  color: #444444;
}

.account-sidebar-v2__link--active {
  background: #f2f2f2;
  color: #444444;
  border-left-color: #444444;
}

.account-sidebar-v2__link--danger {
  color: #444444;
}

.account-sidebar-v2__link--danger:hover {
  background: #eeeeee;
  color: #444444;
}

.account-sidebar-v2__link i {
  width: 20px;
  text-align: center;
}

.badge-v2 {
  margin-left: auto;
  background: #444444;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

/* Account Main */
.account-main-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Account Stats */
.account-stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card-v2 {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-card-v2__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-card-v2__icon--primary {
  background: #f5f5f5;
  color: #444444;
}

.stat-card-v2__icon--warning {
  background: #eeeeee;
  color: #888888;
}

.stat-card-v2__icon--success {
  background: #f5f5f5;
  color: #4d4d4d;
}

.stat-card-v2__icon--info {
  background: #f0f0f0;
  color: #444444;
}

.stat-card-v2__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card-v2__value {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
}

.stat-card-v2__label {
  font-size: 13px;
  color: #666666;
}

/* Account Card */
.account-card-v2 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.account-card-v2--danger {
  border: 2px solid #eeeeee;
}

.account-card-v2__header {
  padding: 24px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-card-v2__title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-card-v2__title i {
  color: #444444;
}

.account-card-v2__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s;
}

.account-card-v2__link:hover {
  gap: 10px;
}

.account-card-v2__body {
  padding: 24px;
}

/* Empty State Small */
.empty-state-v2--small {
  padding: 40px 20px;
}

.empty-state-v2--small i {
  font-size: 48px;
}

.empty-state-v2--small h3 {
  font-size: 20px;
}

.empty-state-v2--small p {
  font-size: 14px;
}

/* Orders Table */
.orders-table-v2 {
  overflow-x: auto;
}

.orders-table-v2 table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table-v2 th {
  text-align: left;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #d9d9d9;
}

.orders-table-v2 td {
  padding: 16px 12px;
  border-bottom: 1px solid #f2f2f2;
}

.orders-table-v2 tr:last-child td {
  border-bottom: none;
}

.order-number {
  font-weight: 600;
  color: #444444;
}

/* Status Badge */
.status-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status-badge-v2--warning {
  background: #eeeeee;
  color: #333333;
}

.status-badge-v2--info {
  background: #f0f0f0;
  color: #333333;
}

.status-badge-v2--primary {
  background: #f5f5f5;
  color: #333333;
}

.status-badge-v2--success {
  background: #f5f5f5;
  color: #333333;
}

.status-badge-v2--danger {
  background: #eeeeee;
  color: #333333;
}

.status-badge-v2--secondary {
  background: #f2f2f2;
  color: #333333;
}

/* Quick Actions */
.quick-actions-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-action-v2 {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}

.quick-action-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  color: #444444;
}

.quick-action-v2 i {
  font-size: 32px;
}

.quick-action-v2 span {
  font-size: 14px;
  font-weight: 600;
}

/* Order Filters */
.order-filters-v2 {
  display: flex;
  gap: 8px;
  background: white;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

.order-filter-v2 {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.order-filter-v2:hover {
  background: #f5f5f5;
  color: #444444;
}

.order-filter-v2.active {
  background: #444444;
  color: white;
}

.order-filter-v2 .count {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

/* Orders List */
.orders-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Order Card */
.order-card-v2 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.order-card-v2__header {
  padding: 20px 24px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-card-v2__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-card-v2__number {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.order-card-v2__date {
  font-size: 13px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-card-v2__body {
  padding: 20px 24px;
}

.order-items-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 10px;
}

.order-item-v2 img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
}

.order-item-v2__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-item-v2__name {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.order-item-v2__qty {
  font-size: 12px;
  color: #666666;
}

.order-item-v2__price {
  font-size: 15px;
  font-weight: 700;
  color: #444444;
}

.order-item-v2--more {
  justify-content: center;
  color: #666666;
  font-size: 14px;
}

.order-card-v2__footer {
  padding: 20px 24px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-card-v2__total {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.order-card-v2__total strong {
  font-size: 20px;
  color: #444444;
}

.order-card-v2__actions {
  display: flex;
  gap: 8px;
}

/* Order Status Card */
.order-status-card-v2 {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 24px;
}

.order-status-card-v2__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.order-status-card-v2__icon--warning {
  background: #eeeeee;
  color: #888888;
}

.order-status-card-v2__icon--info {
  background: #f0f0f0;
  color: #444444;
}

.order-status-card-v2__icon--primary {
  background: #f5f5f5;
  color: #444444;
}

.order-status-card-v2__icon--success {
  background: #f5f5f5;
  color: #4d4d4d;
}

.order-status-card-v2__icon--danger {
  background: #eeeeee;
  color: #444444;
}

.order-status-card-v2__content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 8px;
}

.order-status-card-v2__content p {
  font-size: 15px;
  color: #666666;
  margin: 0;
}

/* Order Timeline */
.order-timeline-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 0;
}

.order-timeline-v2__item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-left: 8px;
}

.order-timeline-v2__item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -24px;
  width: 2px;
  background: #d9d9d9;
}

.order-timeline-v2__item:last-child::before {
  display: none;
}

.order-timeline-v2__item.active .order-timeline-v2__icon {
  background: #444444;
  color: white;
}

.order-timeline-v2__item.active::before {
  background: #444444;
}

.order-timeline-v2__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  z-index: 1;
}

.order-timeline-v2__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 4px;
}

.order-timeline-v2__content p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* Order Detail Grid */
.order-detail-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Order Detail Items */
.order-detail-items-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.order-detail-item-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 12px;
}

.order-detail-item-v2 img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  background: white;
}

.order-detail-item-v2__info {
  flex: 1;
}

.order-detail-item-v2__info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 6px;
}

.order-detail-item-v2__info p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.order-detail-item-v2__price {
  font-size: 18px;
  font-weight: 700;
  color: #444444;
}

/* Order Detail Summary */
.order-detail-summary-v2 {
  border-top: 1px solid #d9d9d9;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-detail-summary-v2__line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #333333;
}

.order-detail-summary-v2__total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 2px solid #d9d9d9;
  font-size: 16px;
}

.order-detail-summary-v2__total strong {
  font-size: 20px;
  color: #444444;
}

/* Order Info */
.order-info-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-info-v2__item {
  display: flex;
  gap: 12px;
}

.order-info-v2__item i {
  width: 20px;
  color: #444444;
  margin-top: 2px;
  flex-shrink: 0;
}

.order-info-v2__item strong {
  display: block;
  font-size: 14px;
  color: #111111;
  margin-bottom: 4px;
}

.order-info-v2__item p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

/* Order Detail Actions */
.order-detail-actions-v2 {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Alert */
.alert-v2 {
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.alert-v2--success {
  background: #f5f5f5;
  color: #333333;
  border: 1px solid #e5e5e5;
}

.alert-v2--error {
  background: #eeeeee;
  color: #333333;
  border: 1px solid #e6e6e6;
}

.alert-v2 i {
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-v2 p {
  margin: 0;
  font-size: 14px;
}

/* Button Small */
.btn-v2--small {
  padding: 8px 16px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .account-layout-v2 {
    grid-template-columns: 240px 1fr;
  }
  
  .account-stats-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quick-actions-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .account-layout-v2 {
    grid-template-columns: 1fr;
  }
  
  .account-sidebar-v2 {
    position: static;
  }
  
  .account-stats-v2 {
    grid-template-columns: 1fr;
  }
  
  .stat-card-v2 {
    padding: 16px;
  }
  
  .quick-actions-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .order-filters-v2 {
    padding: 6px;
  }
  
  .order-filter-v2 {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .order-card-v2__footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .order-card-v2__actions {
    width: 100%;
    flex-direction: column;
  }
  
  .order-card-v2__actions .btn-v2 {
    width: 100%;
  }
  
  .order-status-card-v2 {
    flex-direction: column;
    text-align: center;
  }
  
  .order-detail-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .order-detail-actions-v2 {
    flex-direction: column;
  }
  
  .order-detail-actions-v2 .btn-v2 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quick-actions-v2 {
    grid-template-columns: 1fr;
  }
  
  .orders-table-v2 {
    font-size: 13px;
  }
  
  .orders-table-v2 th,
  .orders-table-v2 td {
    padding: 8px;
  }
}

/* ============================================
   ADDRESSES
   ============================================ */

/* Addresses Grid */
.addresses-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Address Card */
.address-card-v2 {
  background: white;
  border: 2px solid #d9d9d9;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.2s;
}

.address-card-v2:hover {
  border-color: #cdcdcd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.address-card-v2--default {
  border-color: #444444;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.address-card-v2__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #444444;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.address-card-v2__header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px;
}

.address-card-v2__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.address-card-v2__body p {
  margin: 0;
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.address-card-v2__body i {
  color: #444444;
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.address-card-v2__name {
  font-weight: 600;
  color: #111111;
}

.address-card-v2__footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
}

/* Favorites Grid */
/* Responsive */
@media (max-width: 1024px) {
  .addresses-grid-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .address-card-v2__footer {
    flex-direction: column;
  }
  
  .address-card-v2__footer .btn-v2 {
    width: 100%;
  }
}
