.product-page { padding: var(--sp-6) 0 var(--sp-9); }
.product-page__breadcrumb {
font-size: var(--fs-xs);
letter-spacing: 0.06em;
color: var(--c-text-mute);
margin-bottom: var(--sp-5);
}
.product-page__breadcrumb a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.product-page__breadcrumb a:hover { color: var(--c-text); } .product-layout {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: var(--sp-8);
align-items: start;
margin-bottom: var(--sp-9);
} .product-gallery__main {
aspect-ratio: 1 / 1;
background: var(--c-bg-soft);
border-radius: var(--radius-lg);
overflow: hidden;
margin-bottom: var(--sp-3);
}
.product-gallery__main img {
width: 100%; height: 100%; object-fit: cover;
transition: opacity var(--t-base) var(--ease);
}
.product-gallery__thumbs {
display: flex;
gap: var(--sp-2);
flex-wrap: wrap;
padding-bottom: 14px;
}
.product-gallery__thumb {
position: relative;
width: 80px;
height: 80px;
border: 1px solid var(--c-border-soft);
border-radius: var(--radius);
overflow: hidden;
cursor: pointer;
background: var(--c-bg-soft);
padding: 0;
transition: border-color var(--t-base) var(--ease);
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb:hover { border-color: var(--c-text-soft); }
.product-gallery__thumb.is-active { border-color: var(--c-text); }
.product-gallery__thumb::after {
content: '';
position: absolute;
left: 30%;
right: 30%;
bottom: -10px;
height: 2px;
background: var(--c-text);
opacity: 0;
transition: opacity var(--t-base) var(--ease);
}
.product-gallery__thumb.is-active::after { opacity: 1; } .product-info__cat {
font-size: var(--fs-xs);
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--c-text-mute);
margin-bottom: var(--sp-2);
}
.product-info__name {
font-family: var(--ff-display);
font-size: clamp(28px, 3.6vw, 44px);
font-weight: 500;
letter-spacing: -0.01em;
line-height: 1.1;
margin-bottom: var(--sp-3);
}
.product-info__rating {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: var(--sp-4);
}
.product-info__stars {
display: inline-flex;
gap: 1px;
color: var(--c-accent);
}
.product-info__stars svg {
width: 14px;
height: 14px;
fill: currentColor;
}
.product-info__rating-text {
font-size: var(--fs-xs);
color: var(--c-text-soft);
}
.product-info__rating-text a {
color: inherit;
text-decoration: underline;
text-underline-offset: 3px;
transition: color var(--t-base) var(--ease);
}
.product-info__rating-text a:hover { color: var(--c-text); }
.product-info__short {
font-size: var(--fs-base);
color: var(--c-text-soft);
line-height: 1.6;
margin-bottom: var(--sp-5);
}
.product-info__short p { margin-bottom: var(--sp-2); }
.product-info__colors {
margin-bottom: var(--sp-5);
}
.product-info__label {
display: block;
font-size: var(--fs-xs);
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--c-text-soft);
margin-bottom: var(--sp-3);
font-weight: 500;
}
.product-info__label strong {
text-transform: none;
letter-spacing: normal;
color: var(--c-text);
font-weight: 500;
margin-left: 6px;
}
.product-info__swatches {
display: flex;
gap: var(--sp-3);
}
.product-info__swatch {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid transparent;
cursor: pointer;
box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
background-clip: padding-box;
padding: 0;
}
.product-info__swatch:hover { transform: scale(1.05); }
.product-info__swatch.is-active { border-color: var(--c-text); } .product-info__swatch--static,
.product-info__swatch--static:hover {
cursor: default;
transform: none;
} .card-swatch--silver,
.product-info__swatch.card-swatch--silver,
.swatch__circle--silver {
background: linear-gradient(135deg, #d8d6d2 0%, #b3b0aa 50%, #d8d6d2 100%);
}
.card-swatch--gold,
.product-info__swatch.card-swatch--gold,
.swatch__circle--gold {
background: linear-gradient(135deg, #e8c987 0%, #c4994a 50%, #e8c987 100%);
} .product-info__attr {
margin-bottom: var(--sp-5);
}
.product-info__label-row {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: var(--sp-3);
margin-bottom: var(--sp-3);
}
.product-info__label-row .product-info__label {
margin-bottom: 0;
}
.product-info__guide-link {
font-size: 12px;
color: var(--c-text-soft);
background: none;
border: 0;
padding: 0;
text-decoration: underline;
text-underline-offset: 2px;
cursor: pointer;
white-space: nowrap;
}
.product-info__guide-link:hover { color: var(--c-text); }
.product-info__pills {
display: flex;
flex-wrap: wrap;
gap: var(--sp-2);
}
.product-info__pill {
min-width: 56px;
padding: 8px 14px;
border: 1px solid var(--c-border);
border-radius: 4px;
background: var(--c-bg);
color: var(--c-text);
font-size: var(--fs-sm);
font-weight: 500;
cursor: pointer;
transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.product-info__pill:hover { border-color: var(--c-text-soft); }
.product-info__pill.is-active {
border-color: var(--c-text);
background: var(--c-text);
color: var(--c-bg);
} .product-info__select {
display: block;
width: 100%;
max-width: 240px;
padding: 10px 36px 10px 14px;
border: 1px solid var(--c-border);
border-radius: 4px;
background: var(--c-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 12px center;
background-size: 12px 8px;
appearance: none;
-webkit-appearance: none;
font-size: var(--fs-sm);
color: var(--c-text);
cursor: pointer;
}
.product-info__select:focus {
outline: none;
border-color: var(--c-text);
} .size-guide {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.size-guide[hidden] { display: none; }
.size-guide__backdrop {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.5);
animation: sizeGuideFade 0.25s ease;
}
.size-guide__modal {
position: relative;
background: var(--c-bg);
border-radius: 8px;
max-width: 560px;
width: calc(100% - 32px);
max-height: calc(100vh - 32px);
overflow-y: auto;
padding: 32px 28px 28px;
box-shadow: 0 20px 60px rgba(0,0,0,0.25);
animation: sizeGuideSlide 0.3s var(--ease);
}
@keyframes sizeGuideFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sizeGuideSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.size-guide__close {
position: absolute;
top: 12px;
right: 12px;
background: none;
border: 0;
width: 32px;
height: 32px;
cursor: pointer;
color: var(--c-text-soft);
display: inline-flex;
align-items: center;
justify-content: center;
}
.size-guide__close:hover { color: var(--c-text); }
.size-guide__title {
font-family: var(--ff-display);
font-size: 22px;
font-weight: 500;
margin: 0 0 16px;
}
.size-guide__pane p { color: var(--c-text-soft); line-height: 1.6; margin: 0 0 16px; }
.size-guide__table {
width: 100%;
border-collapse: collapse;
margin-bottom: 16px;
font-size: var(--fs-sm);
}
.size-guide__table th,
.size-guide__table td {
padding: 10px 12px;
text-align: left;
border-bottom: 1px solid var(--c-border);
}
.size-guide__table thead th {
background: var(--c-bg-soft);
font-weight: 500;
font-size: 12px;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--c-text-soft);
}
.size-guide__table tbody th {
font-weight: 500;
width: 110px;
}
.size-guide__tip {
background: var(--c-bg-soft);
border-radius: 6px;
padding: 12px 14px;
font-size: var(--fs-sm);
color: var(--c-text);
margin: 0;
}
body.size-guide-open { overflow: hidden; } .product-info__price {
font-family: var(--ff-display);
font-size: var(--fs-2xl);
font-weight: 500;
}
.product-info__price-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--sp-4);
margin-bottom: var(--sp-4);
}
.product-info__add { margin-bottom: var(--sp-3); padding: 16px 24px; font-size: var(--fs-sm); } .product-info__error {
display: flex;
align-items: flex-start;
gap: 8px;
margin: 0 0 var(--sp-4);
padding: 10px 14px;
background: #fdf6f6;
border: 1px solid #f1d4d4;
border-radius: 8px;
color: #8a2828;
font-size: var(--fs-sm);
line-height: 1.45;
}
.product-info__error[hidden] { display: none; }
.product-info__error svg {
width: 18px;
height: 18px;
stroke-width: 1.75;
flex-shrink: 0;
margin-top: 1px;
} .qty-stepper {
display: inline-flex;
align-items: center;
border: 1px solid var(--c-border);
border-radius: var(--radius);
overflow: hidden;
flex-shrink: 0;
background: #fff;
}
.qty-stepper button {
width: 48px;
height: 52px;
border: none;
background: var(--c-bg-soft);
font-size: var(--fs-xl);
font-weight: 500;
color: var(--c-text);
cursor: pointer;
transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.qty-stepper button:hover:not(:disabled) {
background: var(--c-text);
color: #fff;
}
.qty-stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
.qty-stepper input {
width: 48px;
height: 52px;
border: none;
text-align: center;
font-size: var(--fs-base);
background: transparent;
-moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } .product-accordion {
display: flex;
flex-direction: column;
border-top: 1px solid var(--c-border-soft);
}
.acc-item {
border-bottom: 1px solid var(--c-border-soft);
}
.acc-item > summary {
list-style: none;
cursor: pointer;
padding: var(--sp-4) 0;
display: flex;
align-items: center;
justify-content: space-between;
font-family: var(--ff-body);
font-size: var(--fs-sm);
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--c-text);
transition: color var(--t-base) var(--ease);
}
.acc-item > summary::-webkit-details-marker { display: none; }
.acc-item > summary:hover { color: var(--c-accent-dark); }
.acc-item__chev {
width: 18px;
height: 18px;
transition: transform var(--t-base) var(--ease);
}
.acc-item[open] .acc-item__chev { transform: rotate(180deg); }
.acc-item__body {
padding: 0 0 var(--sp-5);
font-size: var(--fs-sm);
color: var(--c-text-soft);
line-height: 1.7;
}
.acc-item__body p { margin-bottom: var(--sp-3); }
.acc-item__body p:last-child { margin-bottom: 0; }
.acc-item__body strong { color: var(--c-text); font-weight: 600; } .specs-list {
list-style: none;
padding: 0;
}
.specs-list li {
padding: 8px 0;
border-bottom: 1px solid var(--c-border-soft);
display: grid;
grid-template-columns: auto 1fr;
column-gap: var(--sp-4);
align-items: start;
}
.specs-list li:last-child { border-bottom: none; }
.specs-list li span:first-child { color: var(--c-text-soft); }
.specs-list li span:last-child {
color: var(--c-text);
font-weight: 400;
text-align: right;
} .acc-item__body ul:not(.specs-list) {
list-style: disc;
padding-left: 1.3em;
margin: var(--sp-3) 0;
}
.acc-item__body ul:not(.specs-list) li {
padding: 4px 0;
line-height: 1.7;
color: var(--c-text-soft);
}
.acc-item__body ul:not(.specs-list) li::marker { color: var(--c-accent); }
.acc-item__body ul:not(.specs-list) li strong { color: var(--c-text); font-weight: 600; } .product-related {
padding-top: var(--sp-7);
border-top: 1px solid var(--c-border-soft);
}
.product-related h2 {
font-family: var(--ff-display);
font-size: var(--fs-3xl);
font-weight: 500;
margin-bottom: var(--sp-6);
text-align: center;
}
.product-related__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--sp-6) var(--sp-5);
} @media (max-width: 980px) {
.product-layout { grid-template-columns: 1fr; gap: var(--sp-6); }
.product-related__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
.product-page { padding: var(--sp-4) 0 var(--sp-7); }
.product-info__price-row { flex-wrap: wrap; }
.product-related__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-3); }
}