/* Shared product cards */
.product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.product-card{min-width:0;display:flex;flex-direction:column;background:#fff;border:1px solid var(--border);border-radius:20px;overflow:hidden;box-shadow:0 18px 34px -20px #1a191840;transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s}
.product-card:hover{transform:translateY(-6px);border-color:#cbc8c4;box-shadow:0 26px 44px -18px #1a19184d}
.product-media{position:relative;margin:8px 8px 0;isolation:isolate}
.product-image{position:relative;display:flex;align-items:center;justify-content:center;aspect-ratio:1;background:#f4f3f2;border-radius:14px;overflow:hidden}
.product-image img{width:100%;height:100%;object-fit:contain;padding:28px;mix-blend-mode:multiply;transition:transform .5s var(--ease)}
.product-card:hover .product-image img{transform:scale(1.065)}
.product-image-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:20px;color:#9e9892;min-height:200px;font-size:14px}
.product-image-placeholder>svg{width:80px;height:80px;stroke-width:1}
.badge{position:absolute;top:13px;left:13px;z-index:1;display:inline-flex;align-items:center;min-height:26px;padding:5px 10px;border-radius:7px;font-size:14px;font-weight:800;letter-spacing:.01em;line-height:1.4}
.badge-new{background:#fff;color:var(--dark)}
.badge-sale{background:var(--accent);color:var(--accent-ink)}
.badge-unavailable{background:#e7e5e3;color:#6d6660}
.favorite-toggle-form{position:absolute;right:12px;top:12px;z-index:1;margin:0}
.favorite-toggle{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:1px solid #e8e6e5;background:#ffffffed;border-radius:50%;padding:9px;color:#5a554f;transition:background .2s,color .2s,transform .2s}
.favorite-toggle svg{width:100%;height:100%;overflow:visible}
.favorite-toggle:hover{color:var(--accent-ink);background:var(--accent);border-color:var(--accent);transform:scale(1.06)}
.favorite-toggle.is-active{background:var(--accent);border-color:var(--accent);color:var(--accent-ink)}
.favorite-toggle.is-active svg{fill:currentColor}
.product-info{display:flex;flex-direction:column;padding:20px;flex:1}
.product-card-meta{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:9px}
.product-brand{font-size:14px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#78726b}
.product-card-stock{display:flex;gap:5px;align-items:center;white-space:nowrap;font-size:14px;color:#7b756e}
.stock-dot{display:inline-block;flex-shrink:0;width:6px;height:6px;background:#9d3b4a;border-radius:50%}
.product-name{font-size:14px;letter-spacing:-.025em;font-weight:700;line-height:1.55;margin:0 0 14px;min-height:44px}
.product-name a:hover{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:4px}
.product-price{display:flex;align-items:baseline;flex-wrap:wrap;gap:9px;margin-top:auto;line-height:1.5}
.price{font-size:21px;letter-spacing:-.055em;font-weight:800}
.old-price{color:#97908a;font-size:14px;font-weight:500;letter-spacing:-.02em}
.product-cart-form{margin:17px 0 0}
.product-add{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;min-height:42px;padding:9px 13px;border:1px solid var(--accent);border-radius:999px;background:var(--accent);color:var(--accent-ink);font-size:14px;font-weight:700;transition:background .2s,border-color .2s}
.product-add svg{width:18px;height:18px}
.product-add:hover:not(:disabled){background:var(--dark);border-color:var(--dark);color:#fff}
.product-add:disabled{background:#f4f3f2;color:#89837d;opacity:.7}
.product-add:disabled svg{display:none}

/* Recommended products rail */
.recommended-rail-section{margin-top:0;padding:40px 0;border-top:1px solid var(--border)}
.recommended-rail-title{text-align:center}
.recommended-rail-wrap{position:relative}
.recommended-rail{overflow-x:auto;overflow-y:hidden;cursor:grab;scrollbar-width:none;-ms-overflow-style:none;scroll-behavior:auto;-webkit-user-select:none;user-select:none;-webkit-mask-image:linear-gradient(90deg,transparent,#000 2%,#000 98%,transparent);mask-image:linear-gradient(90deg,transparent,#000 2%,#000 98%,transparent)}
.recommended-rail::-webkit-scrollbar{display:none}
.recommended-rail.is-dragging{cursor:grabbing}
.recommended-rail.is-dragging .product-card{pointer-events:none}
.recommended-rail-track{display:flex;gap:22px;width:max-content}
.recommended-rail-item{flex:0 0 250px}
.recommended-rail-item .product-card{height:100%}
.recommended-rail-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:2;display:flex;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid var(--border);border-radius:50%;background:#fff;color:var(--dark);box-shadow:0 10px 24px #1a191820;transition:background .2s,border-color .2s,color .2s}
.recommended-rail-arrow:hover{background:var(--dark);border-color:var(--dark);color:#fff}
.recommended-rail-arrow .ui-icon{width:18px;height:18px}
.recommended-rail-arrow-prev{left:-8px}
.recommended-rail-arrow-prev .ui-icon{transform:scaleX(-1)}
.recommended-rail-arrow-next{right:-8px}
@media(max-width:767px){.recommended-rail-arrow{display:none}}
.recommended-rail-full{width:100%;max-width:100%}
.recommended-rail-full .recommended-rail-title{padding-inline:40px}
.recommended-rail-full .recommended-rail-wrap{padding-inline:20px}
.recommended-rail-full .recommended-rail-arrow-prev{left:8px}
.recommended-rail-full .recommended-rail-arrow-next{right:8px}
@media(max-width:767px){.recommended-rail-full .recommended-rail-title{padding-inline:20px}.recommended-rail-full .recommended-rail-wrap{padding-inline:12px}}

/* Category and collection pages */
.catalog-page,.product-page{padding-top:30px;padding-bottom:78px}
.catalog-heading{position:relative;display:flex;justify-content:space-between;align-items:center;gap:30px;padding:26px 36px;margin-bottom:32px;min-height:140px;background:var(--accent);border:1px solid var(--accent);border-radius:18px;overflow:hidden}
.catalog-heading .eyebrow{color:#f6dde0;font-size:14px;margin-bottom:13px}
.catalog-heading h1{color:#fff;font-size:clamp(32px,4.2vw,54px);margin:0 0 16px;line-height:1.15}
.catalog-heading h1 sup{display:inline-flex;align-items:center;justify-content:center;min-width:31px;height:28px;vertical-align:top;margin:5px 0 0 12px;padding:0 8px;background:#fff9;border:1px solid #d3d0cd;border-radius:8px;color:#57524d;font-size:14px;font-weight:700;letter-spacing:0}
.catalog-heading p{font-size:14px;margin:0;max-width:570px;line-height:1.8;color:#f8e6e7}
.catalog-heading-icon{display:flex;flex:0 0 185px;flex-direction:column;align-items:center;justify-content:center;gap:14px;position:relative}
.catalog-heading-icon:before{content:'';position:absolute;width:155px;height:155px;border:1px solid #ffffff40;border-radius:50%;transform:rotate(-20deg)}
.catalog-heading-icon:after{content:'';position:absolute;width:123px;height:123px;border:1px solid #ffffff40;border-radius:50%}
.catalog-heading-icon>svg{position:relative;width:90px;height:90px;stroke-width:1;z-index:1;transform:rotate(-10deg);color:#fff}
.catalog-heading-photo{flex:0 0 260px;align-self:stretch;margin:-38px -42px -38px 0;border-radius:0 22px 22px 0;overflow:hidden}
.catalog-heading-photo>img{width:100%;height:100%;object-fit:cover}
.category-panel-child{padding-left:34px!important;font-size:.92em;color:#746f68}
.catalog-heading-sale{background:var(--dark);color:#fff;border-color:var(--dark)}
.catalog-heading-sale .eyebrow{color:var(--accent)}
.catalog-heading-sale p{color:#b2aea9}
.catalog-heading-sale h1 sup{background:#ffffff15;border-color:#ffffff24;color:var(--accent)}
.catalog-sale-symbol{font-size:142px;font-weight:800;line-height:1;color:var(--accent);letter-spacing:-.09em;transform:rotate(-12deg);margin-right:18px}
.catalog-layout{display:grid;grid-template-columns:235px minmax(0,1fr);gap:32px;align-items:start}
.catalog-sidebar{min-width:0;display:flex;flex-direction:column;gap:20px}
.catalog-category-block{padding:20px 12px 13px;background:#fff;border:1px solid var(--border);border-radius:17px}
.catalog-sidebar-heading{display:flex;align-items:center;justify-content:space-between;margin:0 10px 15px}
.catalog-sidebar-title{font-size:14px;letter-spacing:-.02em;margin:0;font-weight:800}
.catalog-sidebar-heading>span{font-size:14px;background:var(--accent);color:#fff;min-width:24px;text-align:center;border-radius:6px;padding:2px 5px}
.catalog-category-list{display:flex;flex-direction:column;gap:3px}
.catalog-category-list>a{display:flex;align-items:center;gap:10px;min-height:42px;padding:6px 10px;font-size:14px;font-weight:500;border-radius:9px;transition:background .2s,color .2s}
.catalog-category-list>a:hover{background:var(--accent);color:#fff}
.catalog-category-list>a.is-active{background:var(--accent);color:var(--accent-ink);font-weight:800}
.catalog-category-icon{width:27px;height:27px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.catalog-category-icon svg{width:23px;height:23px;stroke-width:1.35}
.catalog-category-arrow{margin-left:auto;color:#89827a;display:flex}.catalog-category-arrow .ui-icon{width:14px;height:14px}
.catalog-category-list>a.is-active .catalog-category-arrow{color:#fff}
.catalog-filter-panel{background:#fff;border:1px solid var(--border);border-radius:17px;overflow:hidden}
.catalog-filter-panel>summary{display:flex;justify-content:space-between;align-items:center;cursor:pointer;list-style:none;padding:19px 20px;font-size:14px;font-weight:800}
.catalog-filter-panel>summary::-webkit-details-marker{display:none}
.catalog-filter-panel>summary>span:first-child{display:flex;align-items:center;gap:9px}
.catalog-filter-panel>summary svg{width:19px;height:19px}
.catalog-filter-panel>summary b{background:var(--accent);min-width:20px;text-align:center;border-radius:5px;font-size:14px}
.catalog-filter-chevron{font-size:18px;line-height:1;transition:transform .2s}
.catalog-filter-panel[open] .catalog-filter-chevron{transform:rotate(180deg)}
.catalog-filter-form{padding:0 20px 20px}
.catalog-filter-label{display:block;font-size:14px;font-weight:700;margin:0 0 9px}
.catalog-filter-form select,.catalog-price-filter input{min-width:0;width:100%;border:1px solid #e0dedb;background:#fff;color:var(--dark);min-height:42px;border-radius:8px;padding:10px 11px;font-size:14px}
.catalog-filter-form select{padding-right:4px}
.catalog-price-filter{border:0;padding:0;margin:22px 0}
.catalog-price-filter legend{float:none;padding:0;width:100%}
.catalog-price-filter legend>span{font-weight:500;color:var(--gray)}
.catalog-price-filter>div{display:flex;align-items:center;gap:7px}
.catalog-price-filter label{min-width:0;flex:1}
.catalog-price-filter>div>span{color:#a8a29c;font-size:14px}
.catalog-price-filter input{padding-inline:9px;appearance:textfield;-moz-appearance:textfield}
.catalog-price-filter input::-webkit-inner-spin-button,.catalog-price-filter input::-webkit-outer-spin-button{appearance:none;margin:0}
.catalog-stock-filter{display:flex;align-items:center;gap:8px;font-size:14px;cursor:pointer;margin:0 0 21px}
.catalog-stock-filter input{width:15px;height:15px;accent-color:var(--dark);margin:0}
.catalog-stock-filter .stock-dot{margin-left:auto}
.catalog-filter-submit{width:100%;justify-content:space-between;min-height:42px;padding:11px 13px;font-size:14px;border-radius:9px}
.catalog-filter-reset{display:block;text-align:center;font-size:14px;color:#7a746d;text-decoration:underline;text-underline-offset:3px;margin-top:13px}
.catalog-sidebar-note{display:block;position:relative;padding:25px 23px 23px;background:var(--accent);border-radius:17px;overflow:hidden;min-height:195px}
.catalog-sidebar-note>.eyebrow{font-size:14px;color:#f6dde0;margin-bottom:14px;position:relative;z-index:1}
.catalog-sidebar-note>p{font-size:26px;color:#fff;font-weight:800;line-height:1.2;letter-spacing:-.045em;margin-bottom:25px;position:relative;z-index:1}
.catalog-note-link{position:relative;z-index:1;display:inline-flex;align-items:center;gap:10px;background:#fff;color:var(--dark);padding:11px 18px;border-radius:999px;font-size:14px;font-weight:700;transition:background .2s,color .2s}.catalog-sidebar-note:hover .catalog-note-link{background:var(--dark);color:#fff}
.catalog-note-icon{position:absolute;right:-19px;bottom:8px;color:var(--accent);opacity:.35;transform:rotate(-12deg)}
.catalog-note-icon svg{width:120px;height:120px;stroke-width:1}
.catalog-sidebar-note:hover{background:var(--accent)}
.catalog-results{min-width:0}
.catalog-toolbar{display:flex;justify-content:flex-end;align-items:center;gap:15px;margin-bottom:23px;min-height:44px}
.catalog-sort-form{display:flex;align-items:center;gap:8px;flex-shrink:0;background:#fff;border:1px solid var(--border);padding:0 4px 0 12px;border-radius:9px;min-height:42px}
.catalog-sort-form label{font-size:14px;color:#8f8880}
.catalog-sort-form select{border:none;background:transparent;font-size:14px;font-weight:700;max-width:182px;padding:10px 2px}
.catalog-sort-form button{display:flex;align-items:center;justify-content:center;width:32px;height:32px;background:var(--accent);border:0;border-radius:6px}
.catalog-sort-form button:hover{background:var(--accent)}
.catalog-sort-form button svg{width:16px;height:16px}
.catalog-active-filters{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:-3px 0 23px}
.catalog-active-filters>a{display:inline-flex;align-items:center;gap:11px;padding:6px 10px;min-height:32px;background:var(--accent);border:1px solid var(--accent);border-radius:7px;font-size:14px;font-weight:600;color:#fff}
.catalog-active-filters>a>span{font-size:16px;font-weight:400;line-height:1}
.catalog-active-filters>a:hover{background:var(--accent)}
.catalog-active-filters>a.catalog-clear-all{background:transparent;border:0;text-decoration:underline;text-underline-offset:3px;color:#7d766f}
.catalog-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.catalog-product-grid .product-info{padding:17px}
.catalog-product-grid .product-image img{padding:25px}
.catalog-empty{text-align:center;padding:75px 25px;border:1px dashed #ffffff40;background:var(--accent);border-radius:20px;color:#fff}
.catalog-empty>.eyebrow{color:#f6dde0;font-size:14px}
.catalog-empty h1,.catalog-empty h2{font-size:clamp(26px,3.4vw,39px);margin:0 0 18px;line-height:1.2}
.catalog-empty p{font-size:14px;line-height:1.9;max-width:370px;margin:0 auto 24px;color:#f8e6e7}
.catalog-empty .btn{border-radius:9px;background:#fff;border-color:#fff;color:var(--dark)}.catalog-empty .btn:hover{background:var(--dark);border-color:var(--dark);color:#fff}

/* Product details */
.product-detail{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:65px;align-items:start}
.product-gallery{position:sticky;top:182px;min-width:0}
.product-detail-image{position:relative;background:#edeceb;border:1px solid var(--accent);border-radius:23px;overflow:hidden;aspect-ratio:1}
.product-gallery-label{position:absolute;top:23px;left:25px;right:25px;display:flex;align-items:center;font-size:14px;letter-spacing:.04em;font-weight:800;color:var(--dark);z-index:1}
.product-gallery-label>span:first-child{text-transform:uppercase}
.product-detail-image>img{width:100%;height:100%;object-fit:contain;padding:65px 40px;mix-blend-mode:multiply}
.product-gallery-thumbs{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px;margin-top:11px}
.product-gallery-thumb{overflow:hidden;padding:0;border:1px solid var(--border);border-radius:10px;background:#f3f2f1;aspect-ratio:1;cursor:pointer}
.product-gallery-thumb:hover,.product-gallery-thumb.is-active{border-color:var(--accent);box-shadow:inset 0 0 0 1px var(--accent)}
.product-gallery-thumb img{display:block;width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}
.product-detail-image>.product-image-placeholder{height:100%}
.product-zoom-link{position:absolute;right:20px;bottom:18px;display:flex;align-items:center;justify-content:center;width:39px;height:39px;border:1px solid #dbd9d7;background:#ffffffb8;border-radius:50%}
.product-zoom-link:hover{background:var(--accent);color:var(--accent-ink)}
.product-zoom-link svg{width:17px;height:17px}
.product-detail-info{min-width:0;padding-top:6px}
.product-detail-kicker{display:flex;align-items:center;gap:15px;flex-wrap:wrap;margin-bottom:18px}
.product-detail-kicker>.product-brand{font-size:14px}
.product-inline-badge{display:inline-block;background:var(--accent);color:var(--accent-ink);padding:5px 9px;border-radius:6px;font-size:14px;font-weight:700}
.product-detail-info h1{font-size:clamp(29px,3.3vw,43px);line-height:1.2;margin:0 0 16px}
.product-detail-price-block{padding:27px 0 23px;margin:0 0 22px;border-bottom:1px solid var(--border)}
.product-price-lg .price{font-size:35px}
.product-price-lg .old-price{font-size:15px}
.product-price-lg{gap:14px}
.product-savings{display:inline-block;font-size:14px;font-weight:600;color:#983948;margin-top:9px}
.product-description{font-size:14px;line-height:1.9;margin:0 0 23px}
.stock-info{display:flex;align-items:center;gap:7px;font-size:14px;font-weight:600;color:#983a48;margin:0 0 19px}
.stock-info.is-unavailable{color:#8a7762}
.stock-info.is-unavailable .stock-dot{background:#aa957b}
.product-actions-row{display:flex;align-items:stretch;gap:11px;margin-bottom:23px}
.add-to-cart-form{display:flex;flex-direction:column;gap:14px;flex:1;min-width:0}
.product-options{display:flex;gap:14px;flex-wrap:wrap}
.product-option{display:flex;flex-direction:column;gap:8px;flex:1;min-width:150px}
.product-option>label{font-size:14px;font-weight:700}
.product-option select{appearance:none;-webkit-appearance:none;width:100%;min-height:48px;padding:0 40px 0 16px;border:1px solid var(--border);border-radius:12px;background:#f8f7f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2376726e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center;background-size:16px;font:inherit;font-size:14px;font-weight:600;color:var(--dark);cursor:pointer;transition:border-color .2s,background-color .2s}
.product-option select:invalid{color:#89837d;font-weight:500}
.product-option select:hover{border-color:#c7c3bf}
.product-option select:focus-visible{border-color:#98928b;outline:2px solid var(--accent);outline-offset:2px}
.add-to-cart-form>.stock-info[data-variant-stock-note]{margin:-4px 0 0}
.add-to-cart-form>.stock-info[data-variant-stock-note]:empty{display:none}
.product-purchase-row{display:flex;gap:11px}
.product-quantity{display:flex;flex-direction:column;align-items:center;justify-content:center;flex:0 0 73px;min-width:0;border:1px solid var(--accent);border-radius:10px;background:#fff;padding:5px 9px}
.product-quantity>label{font-size:14px;font-weight:500;color:#908982}
.product-quantity>input{width:100%;min-width:0;border:0;background:transparent;text-align:center;font-size:14px;font-weight:700;padding:0;line-height:1.5}
.product-purchase-row>.btn{flex:1;justify-content:space-between;gap:12px;min-height:57px;border-radius:10px;font-size:14px;background:var(--accent);border-color:var(--accent);color:var(--accent-ink);padding:14px 22px}
.product-purchase-row>.btn:hover:not(:disabled){background:var(--accent);border-color:var(--accent)}
.product-purchase-row>.btn svg{width:22px;height:22px;flex-shrink:0}
.product-detail-favorite{display:flex;margin:0}
.product-detail-favorite .favorite-toggle-lg{position:static;flex-shrink:0;width:57px;height:57px;border-radius:10px;padding:18px;background:#fff;border-color:var(--accent)}
.product-detail-favorite .favorite-toggle-lg.is-active,.product-detail-favorite .favorite-toggle-lg:hover{background:var(--accent);border-color:var(--accent);color:var(--accent-ink)}
.product-purchase-notes{display:grid;grid-template-columns:1fr 1fr;gap:18px;background:var(--accent);border:1px solid var(--accent);border-radius:12px;padding:17px;margin-bottom:26px}
.product-purchase-notes>a,.product-purchase-notes>span{display:flex;align-items:center;gap:11px;font-size:14px;line-height:1.7;color:#fce9ea}
.product-purchase-notes strong{font-weight:700;color:#fff;font-size:14px}
.product-purchase-notes svg{width:22px;height:22px;flex-shrink:0;color:#fff}
.product-purchase-notes>a:hover strong{text-decoration:underline}
.product-accordions{border-top:1px solid var(--border)}
.product-accordions details{border-bottom:1px solid var(--border)}
.product-accordions summary{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:19px 0;font-size:14px;font-weight:700;list-style:none;cursor:pointer}
.product-accordions summary::-webkit-details-marker{display:none}
.product-accordions summary>span{font-weight:400;font-size:20px;color:#9e9891;line-height:1;transition:transform .2s}
.product-accordions details[open] summary>span{transform:rotate(45deg)}
.product-accordions details>p{font-size:14px;line-height:1.9;padding:0 22px 0 0;margin:0 0 21px}
.product-accordions details>p a{text-decoration:underline;text-underline-offset:3px}
.product-specs{margin:0 0 20px;font-size:14px;display:grid;gap:11px}
.product-specs>div{display:flex;gap:30px;justify-content:space-between}
.product-specs dt{color:#8b847d}
.product-specs dd{margin:0;font-weight:600;text-align:right}
.product-info-section{margin-top:56px;padding-top:44px;border-top:1px solid var(--border)}
.product-info-section .section-title{font-size:26px;margin-bottom:16px}
.product-info-section>p{max-width:760px;font-size:14px;line-height:1.9;color:var(--gray);margin:0 0 30px}
.product-faq{display:grid;grid-template-columns:1fr 1fr;gap:0 40px;border-top:1px solid var(--border)}
.product-faq details{border-bottom:1px solid var(--border)}
.product-faq summary{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 0;font-size:14px;font-weight:700;list-style:none;cursor:pointer}
.product-faq summary::-webkit-details-marker{display:none}
.product-faq summary>span{font-weight:400;font-size:20px;color:#9e9891;line-height:1;transition:transform .2s;flex-shrink:0}
.product-faq details[open] summary>span{transform:rotate(45deg)}
.product-faq details>p{font-size:14px;line-height:1.8;color:var(--gray);margin:0 0 20px;padding-right:20px}
@media(max-width:767px){.product-faq{grid-template-columns:1fr}.product-info-section{margin-top:40px;padding-top:32px}.product-info-section .section-title{font-size:22px}}
.related-products{margin-top:56px;padding-top:44px;border-top:1px solid var(--border)}
.related-heading{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-bottom:30px}
.related-heading .eyebrow{color:#847d76;font-size:14px}
.related-heading .section-title{margin:0;font-size:32px}

@media(max-width:1199px){
    .product-grid{gap:17px}
    .product-info{padding:16px}
    .product-image img{padding:23px}
    .catalog-layout{grid-template-columns:215px minmax(0,1fr);gap:24px}
    .catalog-product-grid{gap:15px}
    .catalog-product-grid .product-info{padding:14px}
    .catalog-product-grid .product-image img{padding:21px}
    .product-card-stock{font-size:14px}
    .product-detail{gap:38px}
    .product-detail-image>img{padding:60px 25px}
    .product-detail-info h1{font-size:35px}
    .product-purchase-row>.btn{padding-inline:16px}
    .product-purchase-notes{gap:10px;padding:14px}
}
@media(max-width:991px){
    .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .catalog-layout{grid-template-columns:190px minmax(0,1fr);gap:21px}
    .catalog-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .catalog-heading{padding:30px;min-height:180px}
    .catalog-heading h1{font-size:42px}
    .catalog-heading-icon{flex-basis:130px}
    .catalog-heading-icon:before{width:130px;height:130px}
    .catalog-heading-icon:after{width:102px;height:102px}
    .catalog-heading-icon>svg{width:75px;height:75px}
    .catalog-heading-photo{flex-basis:180px}
    .catalog-category-list>a{padding-inline:7px;gap:7px;font-size:14px}
    .catalog-category-icon{width:24px;height:24px}
    .catalog-category-icon svg{width:21px;height:21px}
    .catalog-filter-panel>summary{padding:17px 14px}
    .catalog-filter-form{padding:0 14px 17px}
    .catalog-stock-filter{font-size:14px;gap:6px}
    .catalog-sort-form{gap:5px;padding-left:9px}
    .catalog-sort-form label{display:none}
    .catalog-sort-form select{max-width:160px;font-size:14px}
    .catalog-sidebar-note{padding:22px 19px}
    .catalog-sidebar-note>p{font-size:23px}
    .product-detail{gap:27px}
    .product-detail-info h1{font-size:30px}
    .product-gallery{top:170px}
    .product-gallery-label{top:20px;left:20px;right:20px;font-size:14px}
    .product-detail-image>img{padding:45px 15px}
    .product-price-lg .price{font-size:30px}
    .product-detail-price-block{padding-top:23px;margin-bottom:19px}
    .product-description{font-size:14px}
    .product-quantity{flex-basis:59px;padding-inline:6px}
    .product-actions-row,.add-to-cart-form,.product-purchase-row{gap:8px}
    .product-purchase-row>.btn{padding-inline:13px;font-size:14px}
    .product-detail-favorite .favorite-toggle-lg{width:52px;padding:16px}
    .product-purchase-notes{padding:12px;gap:8px}
    .product-purchase-notes>a,.product-purchase-notes>span{font-size:14px;gap:7px}
    .product-purchase-notes svg{width:19px;height:19px}
    .related-products .product-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
    .related-products .product-info{padding:13px}
    .related-products .product-name{font-size:14px;min-height:37px}
    .related-products .price{font-size:18px}
    .related-products .product-card-stock{display:none}
    .related-products .product-image img{padding:18px}
    .recommended-rail-item{flex-basis:220px}
}
@media(max-width:767px){
    .catalog-page,.product-page{padding-top:23px;padding-bottom:48px}
    .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}
    .product-card{border-radius:15px}
    .product-media{margin:6px 6px 0}
    .product-image{border-radius:10px}
    .product-image img{padding:20px}
    .product-info{padding:13px}
    .product-card-meta{gap:5px;margin-bottom:7px}
    .product-brand{font-size:14px;letter-spacing:.06em}
    .product-card-stock{font-size:14px;gap:4px}
    .product-card-stock .stock-dot{width:4px;height:4px}
    .product-name{font-size:14px;min-height:38px;line-height:1.55;margin-bottom:12px}
    .price{font-size:20px}
    .old-price{font-size:14px}
    .product-price{gap:6px}
    .product-cart-form{margin-top:13px}
    .product-add{font-size:14px;min-height:39px;padding:9px 10px;border-radius:8px}
    .product-add svg{width:15px;height:15px}
    .badge{top:9px;left:9px;font-size:14px;min-height:22px;padding:4px 7px;border-radius:5px}
    .favorite-toggle-form{right:8px;top:8px}
    .favorite-toggle{width:31px;height:31px;padding:8px}
    .recommended-rail-section{margin-top:0;padding-top:28px}
    .recommended-rail-track{gap:13px}
    .recommended-rail-item{flex-basis:170px}
    .catalog-heading{padding:27px 24px;margin-bottom:24px;gap:17px;border-radius:17px;min-height:165px}
    .catalog-heading .eyebrow{font-size:14px;margin-bottom:10px}
    .catalog-heading h1{font-size:34px;margin-bottom:12px}
    .catalog-heading h1 sup{font-size:14px;min-width:25px;height:23px;margin-left:8px;border-radius:6px;margin-top:3px}
    .catalog-heading p{font-size:14px;max-width:380px}
    .catalog-heading-icon{display:none}
    .catalog-sale-symbol{font-size:70px;margin-right:0}
    .catalog-heading-sale h1{font-size:31px}
    .catalog-layout{display:block}
    .catalog-sidebar{gap:15px;margin-bottom:22px}
    .catalog-category-block{padding:0;border:0;background:transparent;border-radius:0}
    .catalog-sidebar-heading{margin:0 0 12px}
    .catalog-sidebar-title{font-size:14px}
    .catalog-sidebar-heading>span{display:none}
    .catalog-category-list{flex-direction:row;overflow:auto;gap:8px;padding:2px 1px 10px;scrollbar-width:thin;scrollbar-color:var(--accent) transparent}
    .catalog-category-list>a{flex-shrink:0;gap:7px;font-size:14px;min-height:42px;padding:8px 12px;background:#fff;border:1px solid #e0dedc;border-radius:11px}
    .catalog-category-list>a.is-active{border-color:var(--accent)}
    .catalog-category-icon{width:21px;height:21px}
    .catalog-category-icon svg{width:21px;height:21px}
    .catalog-category-arrow{display:none}
    .catalog-filter-panel{border-radius:13px}
    .catalog-filter-panel>summary{padding:15px 18px;font-size:14px}
    .catalog-filter-form{display:grid;grid-template-columns:1fr 1fr;column-gap:16px;padding:1px 18px 18px}
    .catalog-filter-label[for=catalog-brand]{grid-column:1;grid-row:1;align-self:start}
    .catalog-filter-form select{grid-column:1;grid-row:2;align-self:end;min-height:42px}
    .catalog-price-filter{grid-column:2;grid-row:1/3;margin:0}
    .catalog-price-filter legend{margin-bottom:9px}
    .catalog-stock-filter{grid-column:1;grid-row:3;margin:18px 0 0;align-self:center;font-size:14px}
    .catalog-stock-filter .stock-dot{margin-left:0}
    .catalog-filter-submit{grid-column:2;grid-row:3;margin-top:15px;min-height:40px}
    .catalog-filter-reset{grid-column:1/-1;margin-top:14px}
    .catalog-sidebar-note{display:none}
    .catalog-toolbar{margin-bottom:17px;min-height:40px;gap:10px}
    .catalog-sort-form{min-height:40px;border-radius:8px}
    .catalog-sort-form select{max-width:156px;font-size:14px}
    .catalog-sort-form button{width:29px;height:29px}
    .catalog-active-filters{gap:6px;margin-bottom:17px}
    .catalog-active-filters>a{font-size:14px;gap:8px;min-height:30px;padding:5px 8px}
    .catalog-product-grid{gap:13px}
    .catalog-product-grid .product-info{padding:13px}
    .catalog-product-grid .product-image img{padding:20px}
    .catalog-empty{padding:49px 21px;border-radius:16px}
    .catalog-empty h1,.catalog-empty h2{font-size:28px}
    .catalog-empty p{font-size:14px}
    .product-detail{grid-template-columns:1fr;gap:26px}
    .product-gallery{position:static}
    .product-detail-image{border-radius:18px;aspect-ratio:1.08}
    .product-detail-image>img{padding:52px 25px}
    .product-gallery-label{top:20px;left:21px;right:21px;font-size:14px}
    .product-detail-info{padding-top:0}
    .product-detail-kicker{margin-bottom:13px}
    .product-detail-info h1{font-size:34px;max-width:570px;margin-bottom:13px}
    .product-detail-price-block{padding-block:20px;margin-bottom:20px}
    .product-price-lg .price{font-size:34px}
    .product-price-lg .old-price{font-size:14px}
    .product-description{font-size:14px}
    .product-quantity{flex-basis:67px;padding-inline:9px}
    .product-purchase-row>.btn{font-size:14px;padding-inline:20px}
    .product-detail-favorite .favorite-toggle-lg{width:57px;padding:18px}
    .product-actions-row{gap:10px;margin-bottom:19px}
    .add-to-cart-form,.product-purchase-row{gap:10px}
    .product-purchase-notes{padding:17px;gap:13px}
    .product-purchase-notes>a,.product-purchase-notes>span{font-size:14px;gap:10px}
    .product-purchase-notes svg{width:22px;height:22px}
    .product-accordions summary{font-size:14px}
    .product-specs,.product-accordions details>p{font-size:14px}
    .related-products{margin-top:44px;padding-top:31px}
    .related-heading{align-items:flex-start;gap:16px;margin-bottom:23px}
    .related-heading .section-title{font-size:25px;max-width:240px}
    .related-heading .eyebrow{font-size:14px;margin-bottom:10px}
    .related-heading>.catalog-back-link{margin-top:19px;white-space:nowrap}
    .related-products .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}
    .related-products .product-name{font-size:14px;min-height:38px}
    .related-products .price{font-size:20px}
    .related-products .product-card-stock{display:flex}
}
@media(max-width:374px){
    .product-grid,.catalog-product-grid{gap:10px}
    .product-info,.catalog-product-grid .product-info,.related-products .product-info{padding:11px}
    .product-card-stock{display:none}
    .product-name,.related-products .product-name{font-size:14px;min-height:36px}
    .price,.related-products .price{font-size:18px}
    .old-price{font-size:14px}
    .product-image img,.catalog-product-grid .product-image img{padding:16px}
    .catalog-heading{padding:23px 20px}
    .catalog-heading h1{font-size:30px}
    .catalog-sale-symbol{display:none}
    .catalog-filter-form{gap:0 11px;padding-inline:14px}
    .catalog-filter-panel>summary{padding-inline:14px}
    .catalog-filter-submit{font-size:14px;padding-inline:10px}
    .catalog-stock-filter{font-size:14px;gap:5px}
    .catalog-sort-form select{max-width:142px}
    .product-detail-info h1{font-size:29px}
    .product-quantity{flex-basis:59px}
    .product-purchase-row>.btn{padding-inline:13px;font-size:14px}
    .product-detail-favorite .favorite-toggle-lg{width:52px;padding:16px}
    .product-purchase-notes{padding:13px;gap:10px}
    .product-purchase-notes>a,.product-purchase-notes>span{font-size:14px;gap:7px}
    .related-heading .section-title{font-size:23px}
    .related-heading>.catalog-back-link{font-size:14px}
}
/* Yönetilebilir katalog sayfalaması */
.catalog-pagination{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:30px 0 0}
.catalog-pagination a{display:grid;place-items:center;min-width:40px;height:40px;padding:0 10px;border:1px solid #d9d9d9;border-radius:6px;background:#fff;color:#222;font-size:14px;font-weight:700;text-decoration:none}
.catalog-pagination a:hover,.catalog-pagination a.is-active{border-color:#111;background:#111;color:#fff}
