/* ===========================================
   2026.css Ã¢â‚¬â€ Custom overrides for original theme
   Extracted from inline <style> in layout
   =========================================== */

/* ---- Cart Drawer ---- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(0);
}

.cart-drawer[x-cloak] { display: none; }

.cart-drawer .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.cart-drawer .drawer-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.cart-drawer .drawer-header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.cart-drawer .drawer-header button svg {
    width: 24px;
    height: 24px;
}

.cart-drawer .drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-drawer .drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.cart-drawer .cart-empty {
    text-align: center;
    padding: 48px 0;
    color: #999;
}

.cart-drawer .cart-empty svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    opacity: 0.4;
}

.cart-drawer .cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cart-drawer .cart-item:last-child { border-bottom: 0; }

.cart-drawer .cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f0e8;
    flex-shrink: 0;
}

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

.cart-drawer .cart-item-info { flex: 1; min-width: 0; }
.cart-drawer .cart-item-info .name { font-weight: 600; font-size: 14px; }
.cart-drawer .cart-item-info .meta { font-size: 12px; color: #999; }
.cart-drawer .cart-item-info .price { font-size: 14px; font-weight: 700; margin-top: 4px; }

.cart-drawer .cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-drawer .qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.cart-drawer .qty-stepper button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-drawer .qty-stepper button:hover { background: #f5f5f5; }

.cart-drawer .qty-stepper span {
    width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.cart-drawer .remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #999;
}

.cart-drawer .remove-btn:hover { color: #c00; }

.cart-drawer .subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-drawer .subtotal-row .amount { font-weight: 600; }
.cart-drawer .shipping-note { font-size: 12px; color: #999; margin-bottom: 12px; }

.cart-drawer .btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--cta, #00A676);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.cart-drawer .btn-checkout:hover { opacity: 0.9; }

.cart-drawer .btn-view-cart {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #fff;
    color: var(--text, #171717);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
}

.cart-drawer .btn-view-cart:hover { border-color: #999; }


/* ---- Alpine.js ---- */
[x-cloak] { display: none !important; }

/* Stock notification modal */
.stock-notify-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}


/* ---- USP Interactive Showcase ---- */
.usp-showcase {
    position: relative;
    margin: 1.5rem 0 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
@media(min-width: 768px) {
    .usp-showcase { height: 800px; display: block; min-height: auto; }
}

/* Full background image */
.usp-showcase-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.usp-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}

/* Centered title on image Ã¢â‚¬â€ top area, single line */
.usp-showcase-title {
    position: relative;
    z-index: 10;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    pointer-events: none;
    padding: 1.25rem 1rem 0;
}
@media(min-width: 768px) {
    .usp-showcase-title {
        position: absolute;
        top: 3rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.25rem;
        white-space: nowrap;
        padding: 0;
    }
}
@media(min-width: 1200px) {
    .usp-showcase-title { font-size: 2.5rem; }
}

/* Pills at bottom-left */
.usp-showcase-content {
    position: relative;
    z-index: 10;
    padding: 1rem;
    margin-top: auto;
}
@media(min-width: 768px) {
    .usp-showcase-content {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 2rem;
        max-width: 520px;
    }
}

/* Pills list */
.usp-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
@media(min-width: 768px) {
    .usp-showcase-list { gap: 0.5rem; }
}

.usp-showcase-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 0.75rem;
    font-family: var(--primaryfont);
    position: relative;
}
@media(min-width: 768px) {
    .usp-showcase-item {
        gap: 1rem;
        padding: 1rem 1.25rem;
        border-radius: 1rem;
    }
}

.usp-showcase-item:hover {
    background: rgba(0,0,0,0.45);
}

.usp-showcase-item.is-active {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.3);
}
@media(min-width: 768px) {
    .usp-showcase-item.is-active { align-items: flex-start; }
}

.usp-showcase-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0;
    transition: margin-top 0.25s ease;
}
@media(min-width: 768px) {
    .usp-showcase-icon { width: 36px; height: 36px; }
}
.usp-showcase-item.is-active .usp-showcase-icon {
    margin-top: 2px;
}
.usp-showcase-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.usp-showcase-text {
    flex: 1;
}

.usp-showcase-text h3 {
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    line-height: 1.3;
}
@media(min-width: 768px) {
    .usp-showcase-text h3 { font-size: 1.1rem; }
}

.usp-showcase-text p {
    display: none;
}
@media(min-width: 768px) {
    .usp-showcase-text p {
        display: block;
        font-size: 0.85rem;
        font-weight: 400;
        color: rgba(255,255,255,0.85);
        line-height: 1.65;
        margin: 0.4rem 0 0;
    }
}

.usp-showcase-img-wrap {
    position: absolute;
    inset: 0;
}

.usp-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: static !important;
    transform: none !important;
    max-width: none;
}

/* Circular timer on active pill */
.usp-showcase-item {
    padding-right: 2rem;
}
@media(min-width: 768px) {
    .usp-showcase-item { padding-right: 2.5rem; }
}
.usp-timer {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
    flex-shrink: 0;
}
.usp-timer-track {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 4;
}
.usp-timer-fill {
    fill: none;
    stroke: rgba(255,255,255,0.7);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 69.115;
    stroke-dashoffset: 69.115;
}

@keyframes uspTimerFill {
    from { stroke-dashoffset: 69.115; }
    to { stroke-dashoffset: 0; }
}

/* Dot indicators */
.usp-showcase-dots {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.usp-showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.usp-showcase-dot.is-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* img-title removed Ã¢â‚¬â€ title is now overlaid as section heading */


/* ---- Selection layout fixes ---- */
.selection { flex-direction: column; align-items: stretch; }
.selection .cl, .selection .sz { width: 100%; }


/* ---- Button SVG alignment + fixed width ---- */
.addtocart-button { min-width: 280px; text-align: center; justify-content: center; }
.addtocart-button span { display: flex; align-items: center; gap: 8px; justify-content: center; }
.addtocart-button span svg { flex-shrink: 0; }


/* ---- Social proof toast ---- */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9990;
}

.social-proof-toast .toast-inner {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
}

.social-proof-toast .toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-toast .toast-icon.eye { background: rgba(91,169,230,0.1); color: var(--tertiary); }
.social-proof-toast .toast-icon.bag { background: rgba(237,109,146,0.1); color: var(--pink); }
.social-proof-toast .toast-icon svg { width: 16px; height: 16px; }
.social-proof-toast .toast-msg { font-size: 14px; font-weight: 500; }
.social-proof-toast .toast-close { flex-shrink: 0; background: none; border: none; cursor: pointer; color: #999; padding: 2px; margin-left: 4px; }
.social-proof-toast .toast-close:hover { color: #333; }
.social-proof-toast .toast-close svg { width: 14px; height: 14px; }


/* ---- Gender filter toggle ---- */
.gender-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0 0 2rem;
}
.gender-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--primaryfont);
}
.gender-btn:hover {
    border-color: #ccc;
}
.gender-btn.dames {
    border-color: var(--pink, #ED6D92);
    color: var(--pink, #ED6D92);
}
.gender-btn.dames:hover {
    background: rgba(237,109,146,0.08);
}
.gender-btn.active {
    background: var(--text, #171717);
    color: #fff;
    border-color: var(--text, #171717);
}
.gender-btn.dames.active {
    background: var(--pink, #ED6D92);
    border-color: var(--pink, #ED6D92);
    color: #fff;
}

/* ---- Dames badge ---- */
.dames-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--pink, #ED6D92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
    margin-left: 6px;
    position: relative;
    top: -2px;
}


/* ---- Height / Cushion selector buttons ---- */
.sel-row {
    width: 100%;
}
/* Closing: buttons slide out first, then height collapses */
.sel-cushion-row {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s,
                opacity 0.2s ease 0s;
}
/* Opening: height expands first, then buttons slide in */
.sel-cushion-row.is-visible {
    max-height: 80px;
    opacity: 1;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s,
                opacity 0.25s ease 0.05s;
}
/* Buttons: slide out to left when closing */
.sel-cushion-row .sel-btn {
    transform: translateX(-12px);
    opacity: 0;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.15s ease,
                background 0.2s ease,
                color 0.2s ease;
}
/* Staggered close: last buttons leave first */
.sel-cushion-row .sel-btn:nth-child(1) { transition-delay: 0.06s; }
.sel-cushion-row .sel-btn:nth-child(2) { transition-delay: 0.03s; }
.sel-cushion-row .sel-btn:nth-child(3) { transition-delay: 0s; }

/* Buttons: slide in from left when opening */
.sel-cushion-row.is-visible .sel-btn {
    transform: translateX(0);
    opacity: 0.6;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                background 0.2s ease,
                color 0.2s ease;
}
.sel-cushion-row.is-visible .sel-btn.active {
    opacity: 1;
}
/* Staggered open: first buttons appear first */
.sel-cushion-row.is-visible .sel-btn:nth-child(1) { transition-delay: 0.05s; }
.sel-cushion-row.is-visible .sel-btn:nth-child(2) { transition-delay: 0.1s; }
.sel-cushion-row.is-visible .sel-btn:nth-child(3) { transition-delay: 0.15s; }
.sel-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.sel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 12px;
   
    font-weight: 600;
    position: relative;
    border: 2px solid #000;
    border-radius: 50px;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: var(--primaryfont, 'DM Sans', sans-serif);
    white-space: nowrap;
    opacity: 0.6;
}
.sel-btn.sel-height{
     padding-left: 32px;
}
.sel-btn:hover {
    opacity: 1;
}
.sel-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
    opacity: 1;
}

.sel-height-icon {
    width: 14px;
    height: auto;
    flex-shrink: 0;
    display: block;
    position: absolute;
    left: 11px;
    max-width: none;
}
.sel-btn .sel-height-icon path {
    stroke-width: 26px;
    fill:#000;
}

.sel-btn.active .sel-height-icon path{
    fill:#fff;
}



/* ---- Product image hover parallax ---- */
.prodhold:not(.productdetails) .image {
    --px: 0px;
    --py: 0px;
}
.prodhold:not(.productdetails) .image .cimg {
    transition: translate 5s cubic-bezier(0.16, 1, 0.3, 1);
    translate: var(--px) var(--py);
}
.prodhold:not(.productdetails) .image.is-hovering .cimg {
    transition: translate 0.6s ease-out;
}


/* ---- Scroll reveal for product cards ---- */
.prodhold:not(.productdetails) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.prodhold.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---- Shop layout ---- */
.shop-layout {
    display: flex;
    gap: 2rem;
}
.shop-sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
}
.shop-main {
    flex: 1;
    min-width: 0;
}
@media (max-width: 767px) {
    .shop-layout { flex-direction: column; }
    .shop-sidebar { width: 100%; position: static; }
}


/* ---- Shop filters ---- */
.shop-filters {
    margin-bottom: 0;
}
.shop-filters-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.shop-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.shop-filter-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}
.shop-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.shop-filter-pill {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.shop-filter-pill svg{
    width:18px;
}
.shop-filter-pill:first-child span{
    padding-left:12px
}
.shop-filter-pill input { display: none; }
.shop-filter-pill span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    color: #666;
    transition: all 0.15s ease;
}
.shop-filter-pill svg path{
    fill:#000;
    stroke: #000;
    transition: all 0.15s ease;
}
.shop-filter-pill input:checked + span svg path
{
     fill:#fff;
    stroke: #fff;
}
.shop-filter-pill.height span{
    padding-left: 32px;
}
.shop-filter-pill:hover span {
    border-color: #999;
    color: #333;
}
.shop-filter-pill.disabled {
    opacity: 0.3;
    pointer-events: none;
}
.shop-filter-pill.active span,
.shop-filter-pill input:checked + span {
    background: var(--text, #171717);
    color: #fff;
    border-color: var(--text, #171717);
}
.shop-filter-pill.dames-pill span {
    border-color: var(--pink, #ED6D92);
    color: var(--pink, #ED6D92);
}
.shop-filter-pill.dames-pill.active span,
.shop-filter-pill.dames-pill input:checked + span {
    background: var(--pink, #ED6D92);
    border-color: var(--pink, #ED6D92);
    color: #fff;
}

.shop-filter-color {
    cursor: pointer;
    display: inline-flex;
}
.shop-filter-color input { display: none; }
.shop-filter-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.shop-filter-color:hover .shop-filter-swatch {
    transform: scale(1.1);
}
.shop-filter-color.active .shop-filter-swatch,
.shop-filter-color input:checked + .shop-filter-swatch {
    border-color: var(--text, #171717);
    transform: scale(1.15);
}

.shop-filters-active {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}
.shop-filter-count {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}
.shop-filter-clear {
    font-size: 12px;
    font-weight: 600;
    color: var(--pink, #ED6D92);
    text-decoration: none;
}
.shop-filter-clear:hover {
    text-decoration: underline;
}


/* ---- Shop grid cards ---- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1200px) {
    .shop-grid {grid-template-columns: repeat(4, 1fr);}
}

.shop-card {
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    border-radius: 1.25rem;
    overflow: hidden;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.shop-card-body {
    flex: 1;
}

.shop-card-dames,
.shop-card-unisex {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shop-card-dames {
    background: var(--pink, #ED6D92);
    color: #fff;
}
.shop-card-unisex {
    background: var(--text, #171717);
    color: #fff;
}

.shop-card-image-link {
    display: block;
    text-decoration: none;
}
.shop-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    pointer-events: none;
}
.shop-card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    object-fit: contain;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
    max-width: none;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
    opacity: 0;
    pointer-events: none;
}
.shop-card-img.active {
    opacity: 1;
    pointer-events: auto;
}
.shop-card:hover .shop-card-img.active {
    transform: translate(-50%, -50%) scale(1.05);
}

.shop-card-body {
    padding: 0.75rem 1rem 1rem;
}

.shop-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}
.shop-card-specs span {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    padding: 2px 10px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.shop-card-specs .sel-height-icon {
    height: 12px;
    width: auto;
    border-radius: 50px;
}

/* Weight layers icon — 3D diamond stack */
.layers-sm {
    display: inline-block;
    width: 18px;
    height: 13px;
    position: relative;
    vertical-align: middle;
    margin-right: 3px;
}
.layers-sm .lr {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}
.layers-sm .lr:nth-child(1) { bottom: 0; }
.layers-sm .lr:nth-child(2) { bottom: 1.5px; }
.layers-sm .lr:nth-child(3) { bottom: 3px; }
.layers-sm .lr:nth-child(4) { bottom: 4.5px; }
.layers-sm .lr:nth-child(5) { bottom: 6px; }
.layers-sm .lr svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 1px 0.5px rgba(0,0,0,0.15)); }
.layers-sm .lr svg path { stroke: none; }
.layers-sm .lr svg path:nth-child(2) { opacity: 0.25; }

/* Layer colors: black, pink, blue, green, black */
.layers-sm .lr:nth-child(1) svg path:first-child { fill: #1A1A1A; }
.layers-sm .lr:nth-child(2) svg path:first-child { fill: #FF6392; }
.layers-sm .lr:nth-child(3) svg path:first-child { fill: #5AA9E6; }
.layers-sm .lr:nth-child(4) svg path:first-child { fill: #00A676; }
.layers-sm .lr:nth-child(5) svg path:first-child { fill: #1A1A1A; }

/* Large weight layers — for product card image area */
.layers-lg {
    position: absolute;
    top: 28px;
    right: 12px;
    width: 40px;
    height: 36px;
    z-index: 10;
}
.layers-lg .lr {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}
.layers-lg .lr:nth-child(1) { bottom: 0; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.layers-lg .lr:nth-child(2) { bottom: 4px; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.layers-lg .lr:nth-child(3) { bottom: 8px; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.layers-lg .lr:nth-child(4) { bottom: 12px; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.layers-lg .lr:nth-child(5) { bottom: 16px; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.pdp-dikte:hover .layers-lg .lr:nth-child(1) { bottom: 0; }
.pdp-dikte:hover .layers-lg .lr:nth-child(2) { bottom: 8px; }
.pdp-dikte:hover .layers-lg .lr:nth-child(3) { bottom: 16px; }
.pdp-dikte:hover .layers-lg .lr:nth-child(4) { bottom: 24px; }
.pdp-dikte:hover .layers-lg .lr:nth-child(5) { bottom: 32px; }
.layers-lg .lr svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 2px 1px rgba(0,0,0,0.2)); }
.layers-lg .lr svg path { stroke: none; }
.layers-lg .lr svg path:nth-child(2) { opacity: 0.25; }
.layers-lg .lr:nth-child(1) svg path:first-child { fill: #1A1A1A; }
.layers-lg .lr:nth-child(2) svg path:first-child { fill: #FF6392; }
.layers-lg .lr:nth-child(3) svg path:first-child { fill: #5AA9E6; }
.layers-lg .lr:nth-child(4) svg path:first-child { fill: #00A676; }
.layers-lg .lr:nth-child(5) svg path:first-child { fill: #1A1A1A; }

/* Animate only when in view — with staggered delays */
.layers-sm.is-visible .lr,
.layers-lg.is-visible .lr {
    animation: lrSlide 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.layers-sm.is-visible .lr:nth-child(1),
.layers-lg.is-visible .lr:nth-child(1) { animation-delay: 0.3s; }
.layers-sm.is-visible .lr:nth-child(2),
.layers-lg.is-visible .lr:nth-child(2) { animation-delay: 0.7s; }
.layers-sm.is-visible .lr:nth-child(3),
.layers-lg.is-visible .lr:nth-child(3) { animation-delay: 1.1s; }
.layers-sm.is-visible .lr:nth-child(4),
.layers-lg.is-visible .lr:nth-child(4) { animation-delay: 1.5s; }
.layers-sm.is-visible .lr:nth-child(5),
.layers-lg.is-visible .lr:nth-child(5) { animation-delay: 1.9s; }

@keyframes lrSlide {
    0% { opacity: 0; transform: translateX(-12px) translateY(10px) scale(0.7); }
    35% { opacity: 0.85; transform: translateX(2px) translateY(-4px) scale(1.02); }
    65% { opacity: 0.85; transform: translateX(0) translateY(1px) scale(1); }
    100% { opacity: 0.85; transform: translateX(0) translateY(0) scale(1); }
}

.shop-card-name {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
}

.shop-card-sub {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 6px;
}

.shop-card-price {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.shop-card-colors {
    display: flex;
    gap: 4px;
    align-items: center;
}

.shop-card-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.shop-card-swatch:hover {
    transform: scale(1.15);
}
.shop-card-swatch.active {
    border-color: #000;
}

.shop-card-swatch-more {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    padding-left: 2px;
}

.shop-card-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0.75rem 0.75rem;
}
.shop-card-sizes-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.shop-card-sizes-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}
.shop-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.shop-size-btn {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}
.shop-size-btn:hover {
    border-color: #999;
    color: #333;
}
.shop-size-btn.active {
    background: var(--text, #171717);
    color: #fff;
    border-color: var(--text, #171717);
}
.shop-size-btn.oos-size {
    color: #ccc;
    border-color: #e5e5e5;
    text-decoration: line-through;
    cursor: pointer;
    background: #f9f9f9;
}
.shop-size-btn.oos-size:hover {
    border-color: #999;
    color: #999;
}
.shop-size-btn.active.oos-size {
    background: #f9f9f9;
    color: #999;
    border-color: #999;
    text-decoration: line-through;
}
.shop-card-btns {
    display: flex;
    gap: 6px;
    align-items: center;
}
.shop-cart-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 30px;
    border: none;
    background: var(--cta, #00A676);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    white-space: nowrap;
}
.shop-cart-btn:hover {
    background: #333;
}
.shop-cart-btn.added {
    background: var(--cta, #00A676);
}
.shop-cart-btn:disabled {
    background: #e5e5e5;
    color: #999;
    opacity: 1;
    cursor: default;
}
.shop-cart-btn.no-size {
    background: #f0f0f0;
    color: #999;
    cursor: default;
}
.shop-cart-btn.oos {
    background: #fff;
    color: #1A1A1A;
    border: 1.5px solid #1A1A1A;
    cursor: pointer;
    opacity: 1;
}
.shop-cart-btn.oos:hover {
    background: #1A1A1A;
    color: #fff;
}
.shop-cart-btn .oos-hover { display: none; }
.shop-cart-btn.oos:hover .oos-text { display: none !important; }
.shop-cart-btn.oos:hover .oos-hover { display: inline !important; }
.shop-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    color: #666;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.shop-info-btn:hover {
    border-color: #999;
    color: #333;
}


/* ---- PDP specific ---- */
.pdp-dikte {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
}
.pdp-dikte .layers-lg {
    position: relative;
    bottom: auto;
    right: auto;
    width: 48px;
    height: 34px;
    top: unset;
    cursor: pointer;
}
.pdp-dikte-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.pdp-weight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background: rgba(0,0,0,0.04);
    padding: 4px 12px;
    border-radius: 50px;
}

.size-option label {
    transition: opacity 0.2s ease, color 0.2s ease;
}
.size-option.oos label {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: pointer;
}
.size-option.oos:hover label {
    opacity: 0.5;
}
.size-option.oos input:checked + label {
    opacity: 0.6;
    text-decoration: line-through;
}

/* PDP image gallery — override the grid layout on .imghold */
.productdetails .imghold {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    gap: 0 !important;
}

.pdp-main-image {
    position: relative;
    background: #f5f5f5;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.pdp-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    position: static !important;
    transform: none !important;
    max-width: none !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.pdp-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}
.pdp-thumbnails::-webkit-scrollbar { display: none; }

.pdp-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: #f5f5f5;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: border-color 0.2s ease, transform 0.15s ease;
}
.pdp-thumb:hover {
    border-color: #ccc;
    transform: scale(1.05);
}
.pdp-thumb.active {
    border-color: #000;
}
.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    position: static !important;
    transform: none !important;
    max-width: none;
}

.addtocart-button {
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent !important;
}
.addtocart-button.btn-primary {
    border-color: var(--cta, #00A676) !important;
}
.addtocart-button.disabled {
    border-color: #ddd !important;
}
.btn-oos {
    background: transparent !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    cursor: pointer !important;
}
.btn-oos:hover {
    background: #000 !important;
    color: #fff !important;
}

.sel-btn { text-decoration: none; }
a.sel-btn { text-decoration: none; color: #000; }
a.sel-btn:hover { opacity: 1; }

.product-container.productdetails {
    animation: pdpFadeIn 0.35s ease;
}
.product-container.pdp-fade-out {
    animation: pdpFadeOut 0.2s ease forwards !important;
}
@keyframes pdpFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pdpFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(8px); }
}

/* PDP features section — left text + right sock */
.pdp-features-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}
@media (min-width: 768px) {
    .pdp-features-section {
        grid-template-columns: 30% 1fr;
        gap: 3rem;
        align-items: start;
        margin-top: 2rem;
    }
}
.pdp-features-left{
    display:flex;
    flex-direction:column;
    height:100%;
}
.pdp-features-left h3 {
    /* font-size: 1.5rem; */
    /* font-weight: 900; */
    /* margin: 0; */
    margin-bottom: 0;
}
.pdp-features-sub {
    font-size: 20px;
    /* color: #888; */
    /* margin: 4px 0 1.5rem; */
    margin-top: 0;
    margin-bottom: 1rem;
}
.pdp-features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
    /* margin-top: auto; */
}
.pdp-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}
.pdp-feature-item:last-child { border-bottom: none; }
.pdp-feature-item.active {
    color: #000;
    font-weight: 700;
}
.pdp-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.pdp-feature-item.active .pdp-feature-dot {
    background: var(--cta, #00A676);
    transform: scale(1.3);
}

.pdp-materials h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 8px;
}
.pdp-materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pdp-material-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    background: #f5f5f5;
    border-radius: 50px;
    border: 1px solid #e5e5e5;
}

.pdp-features-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-features-sock {
    position: relative;
    width: 100%;
    max-width: 580px;
}
.pdp-features-sock .cimg {
    display: none;
}
.pdp-features-sock .cimg.active {
    display: block;
}
.pdp-features-sock .cimg img {
    width: 100%;
    height: auto;
    display: block;
    position: static !important;
    transform: none !important;
    max-width: none;
}

.reviews-container { padding: 2rem 0; }
.reviews-container h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.reviews-summary { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.reviews-avg-score { font-size: 2.5rem; font-weight: 900; }
.reviews-avg .stars svg { width: 14px; height: 14px; fill: var(--primary, #FFD2A3); }
.reviews-avg-count { font-size: 13px; color: #999; display: block; }
.reviews-list { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .reviews-list { grid-template-columns: repeat(2, 1fr); } }
.review-card { background: #f8f8f8; border-radius: 1rem; padding: 1.25rem; }
.review-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.review-card-header .stars svg { width: 12px; height: 12px; fill: var(--primary, #FFD2A3); }
.review-author { font-size: 12px; font-weight: 700; color: #666; }
.review-title { font-size: 14px; font-weight: 800; margin: 0 0 4px; }
.review-body { font-size: 13px; color: #555; line-height: 1.5; margin: 0; }

.pdp-related { padding: 2rem 0; }
.pdp-related h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.pdp-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .pdp-related-grid { grid-template-columns: repeat(4, 1fr); } }
.pdp-related-card { text-decoration: none; color: inherit; background: #f8f8f8; border-radius: 1rem; overflow: hidden; transition: transform 0.2s ease; }
.pdp-related-card:hover { transform: translateY(-3px); }
.pdp-related-img { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.pdp-related-img img { width: 80%; height: 80%; object-fit: contain; position: static !important; transform: none !important; max-width: none; }
.pdp-related-info { padding: 0 1rem 1rem; }
.pdp-related-name { font-size: 14px; font-weight: 700; display: block; }
.pdp-related-price { font-size: 16px; font-weight: 900; display: block; margin-top: 2px; }


/* ---- Product name pill ---- */
.product-name-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    background: rgba(0,0,0,0.05);
    padding: 4px 12px;
    border-radius: 50px;
    transform: translate3d(0,-10px,0);
    margin-bottom: 4px;
}


/* ---- Grouped product card ---- */
.prod-group-selectors {
    padding: 1rem 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
@media (min-width: 768px) {
    .prod-group-selectors {
        padding: 1.5rem 1.5rem 0;
    }
}
/* Grouped card */
.prod-grouped {
    overflow: hidden;
}

.prod-grouped-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    animation: cardFadeIn 0.25s ease;
}
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 768px) {
    .prod-grouped-inner {
        flex-direction: row !important;
    }
}


/* ---- Hero word rotation ---- */
.hero-line {
    display: inline !important;
}

.hero-rotate {
    display: inline-block;
    position: relative;
    text-align: left;
    vertical-align: bottom;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Invisible spacer that holds the height and baseline */
.hero-rotate::after {
    content: '\00a0';
    visibility: hidden;
    display: inline;
}

.hero-rotate-word {
    position: absolute;
    left: 0;
    bottom: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-rotate-word.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-rotate-word.is-leaving {
    opacity: 0;
    transform: translateY(-6px);
}

/* ---- Tailwind utility compat for shared views (blog show, etc.) ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

.relative { position: relative; }
.sticky { position: sticky; }
.top-28 { top: 7rem; }

.w-1 { width: 0.25rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.h-1 { height: 0.25rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-full { height: 100%; }

.max-w-none { max-width: none; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-0 { padding-bottom: 0; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mr-1 { margin-right: 0.25rem; }
.pt-6 { padding-top: 1.5rem; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.overflow-hidden { overflow: hidden; }

.bg-cream { background-color: #F5F0E8; }
.bg-ink { background-color: #1A1A1A; }
.bg-white { background-color: #fff; }
.bg-transparent { background-color: transparent; }

.text-ink { color: #1A1A1A; }
.text-white { color: #fff; }
.text-muted { color: #6B7280; }
.text-blue { color: #5AA9E6; }
.text-pink { color: #FF6392; }
.text-border { color: #E5E5E5; }
.text-gray-400 { color: #9CA3AF; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-center { text-align: center; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.no-underline { text-decoration: none; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.border { border-width: 1px; border-style: solid; }
.border-border { border-color: #E5E5E5; }
.border-t { border-top-width: 1px; border-top-style: solid; }

.object-cover { object-fit: cover; }
.aspect-\[5\/2\] { aspect-ratio: 5/2; }
.aspect-\[16\/10\] { aspect-ratio: 16/10; }

.text-display { font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
.text-h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.015em; }
.text-h4 { font-size: 1.125rem; font-weight: 700; line-height: 1.3; }

.transition-colors { transition: color 0.15s ease; }
.transition-all { transition: all 0.3s ease; }
.transition-transform { transition: transform 0.5s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:text-blue:hover { color: #5AA9E6; }
.hover\:text-pink:hover { color: #FF6392; }
.hover\:border-blue:hover { border-color: #5AA9E6; }
.hover\:border-white:hover { border-color: #fff; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.group:hover .group-hover\:text-blue { color: #5AA9E6; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:gap-2 { gap: 0.5rem; }
.group:hover .group-hover\:gap-2\.5 { gap: 0.625rem; }

.border-white\/30 { border: 1px solid rgba(255,255,255,0.3); }
.text-ink\/80 { color: rgba(26,26,26,0.8); }

/* Prose base for blog content */
.prose { line-height: 1.75; color: #1A1A1A; }
.prose p { margin-top: 1.25em; margin-bottom: 1.25em; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: #1A1A1A; }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; color: #1A1A1A; }
.prose a { color: #5AA9E6; font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: #1A1A1A; font-weight: 700; }
.prose img { border-radius: 0.75rem; border: 1px solid #E5E5E5; max-width: 100%; }
.prose blockquote { border-left: 4px solid #5AA9E6; background: #F5F0E8; border-radius: 0 0.75rem 0.75rem 0; padding: 0.25rem 1.5rem; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; }
.prose ol { list-style-type: decimal; padding-left: 1.5rem; }
.prose li { color: rgba(26,26,26,0.8); }

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:pt-14 { padding-top: 3.5rem; }
    .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .sm\:p-6 { padding: 1.5rem; }
    .sm\:p-10 { padding: 2.5rem; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:gap-16 { gap: 4rem; }
    .lg\:p-12 { padding: 3rem; }
}
