/** Shopify CDN: Minification failed

Line 2074:0 Unexpected "}"
Line 2114:0 Unexpected "}"

**/
/* refined-style.css - Rebranded to Approachable/Clean */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

/* Announcement Bar */
.announcement-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    overflow: hidden;
}

.announcement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.announcement-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-item {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.announcement-item span {
    display: block;
}

/* Mobile Announcement Bar Carousel */
@media (max-width: 768px) {
    .announcement-container {
        padding: 0 1rem;
    }

    .announcement-items {
        position: relative;
        height: 1.5rem;
        justify-content: center;
        overflow: hidden;
    }

    .announcement-item {
        position: absolute;
        width: 100%;
        left: 0;
        opacity: 0;
        transform: translateX(20px);
        pointer-events: none;
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .announcement-item.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
}

:root {
    --font-heading: 'Poppins', sans-serif;
    /* Friendly, geometric */
    --font-body: 'Inter', sans-serif;
    /* Clean, readable */
    --color-bg: #ffffff;
    --color-text: #2c3e50;
    /* Softer dark blue-grey */
    --color-primary: #3498db;
    /* Trustworthy Blue */
    --color-accent: #e74c3c;
    /* Action color */
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    /* Explicit base size */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: none;
    /* Removed uppercase for approachability */
    letter-spacing: -0.02em;
    /* Tighter layout */
    margin: 0 0 1rem 0;
    color: #1a1a1a;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    /* Slightly narrower for readability */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--radius);
    text-transform: capitalize;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
    position: relative;
}

header .logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 500;
}

header .logo a {
    text-decoration: none;
    color: #000;
    font-family: 'Didot', serif;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

header nav ul {
    gap: 1.5rem;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #555;
}

header nav a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    height: 600px;
    /* Reduced height from full screen */
    position: relative;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    /* Stronger contrast */
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-content h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Product Card - REBRANDED & FIXED */
/* Product Card - Elegant Design */
.product-card {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fafafa;
    width: 100%;
}

.product-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
    font-family: var(--font-body);
}

.product-card-info {
    padding: 1.5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
    margin: 0;
    color: #333;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-price-current {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.product-price-compare {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Product Card Hover Effects */
.product-card:hover {
    transform: translateY(-4px);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card:hover .product-card-overlay {
    background: rgba(0, 0, 0, 0.02);
}

.product-card:hover .product-title {
    color: #000;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 0.6rem;
    /* Slightly larger touch target */
    background: #f0f0f0;
    color: #333;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
    margin-top: auto;
    /* Redundant but safe */
}

.product-card:hover .card-btn {
    background: #1a1a1a;
    color: #fff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Elegant, thin */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-text);
    /* Black */
    color: #fff;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    border: 1px solid var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-text);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-text);
    color: #fff;
}

/* Header */
header {
    padding: 0;
    position: sticky;
    top: 0;
    background: var(--color-bg);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header .logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 500;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
}

header nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-text);
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    align-items: center;
}

.icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.icon-link:hover {
    color: #000;
}

.icon-link:hover {
    color: #000;
}

.header-icons .icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    display: block;
}

.header-icons .mobile-icon {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

.header-icons .cart-count,
.header-icons .cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.45rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.header-icons .cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 90vh;
    /* Full height */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Subtle darken */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    animation: fadeUp 1s ease-out;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.1;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Card */
/* Duplicate styles removed - using main product-card styles above */

/* Product Grid - Default Desktop */
.product-grid-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   COLLECTION PAGE STYLES
   ============================================ */

.collection-page {
    min-height: 60vh;
    padding: 1.5rem 0 3rem;
}

.collection-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
    background: transparent;
    box-shadow: none;
    position: static;
}

.collection-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.collection-count {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.05em;
}

.collection-toolbar {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-toggle-btn:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.sort-select-mobile {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 150px;
}

.collection-layout {
    display: flex;
    gap: 3rem;
    position: relative;
    align-items: flex-start;
}

.collection-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
}

.sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.sidebar-header h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.close-filters {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.close-filters:hover {
    color: #000;
}

.filter-group {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin-bottom: 0.75rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
    transition: color 0.2s ease;
}

.filter-label:hover {
    color: #1a1a1a;
}

.filter-label.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #1a1a1a;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-count {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

/* Price Range Filter */
.price-range {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.price-field {
    position: relative;
    flex: 1;
}

.currency-symbol {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
}

.price-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 1.8rem;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s ease;
}

.price-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.price-separator {
    color: #999;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sort-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.filter-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.clear-filters-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-filters-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.collection-main {
    flex-grow: 1;
    min-width: 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem 1.5rem;
    transition: opacity 0.3s ease;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.load-more-btn {
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Filter Overlay for Mobile */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   PAGE CONTENT STYLES (Policy Pages)
   ============================================ */

.page-content-section {
    padding: 3rem 0 5rem;
    min-height: 60vh;
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-content {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1.25rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.page-content a:hover {
    color: #666;
}

.page-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 2rem 0 3rem;
    }

    .page-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .page-content {
        font-size: 0.95rem;
    }

    .page-content h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .page-content h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 0;
    border-bottom: none;
    background: transparent;
    box-shadow: none;
    position: static;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.contact-subtitle {
    color: #666;
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #fff;
}

.form-title,
.info-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s ease;
    color: #333;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.form-success {
    padding: 1rem;
    background: #f0f9f0;
    border: 1px solid #4caf50;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-errors {
    padding: 1rem;
    background: #fff5f5;
    border: 1px solid #f44336;
    color: #c62828;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-errors ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.info-content h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.info-content p,
.info-content a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-content a:hover {
    color: #1a1a1a;
}

.info-content p {
    white-space: pre-line;
}

.contact-social {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    color: #333;
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

/* Footer Styles */
.site-footer {
    padding: 4rem 0;
    background-color: #1a1a1a;
    color: #ffffff;
    border-top: 1px solid #333;
    width: 100%;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent grid column from overflowing */
}

/* Ensure footer grid doesn't collapse on desktop */
@media (min-width: 769px) {
    .site-footer .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 3rem !important;
    }
    
    .footer-col {
        align-items: flex-start !important;
        width: auto !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.newsletter-text {
    color: #ccc;
    margin-bottom: 1rem !important;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input {
    padding: 0.8rem;
    border: none;
    flex-grow: 1;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.footer-newsletter-form input:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-footer {
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-footer:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.footer-copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.85rem;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle .hamburger {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Header Icons - Desktop/Mobile Display */
.header-icons .mobile-icon {
    display: none;
}

.header-icons .desktop-text {
    display: inline;
}

.header-icons .icon-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    /* Header - Mobile */
    .header-grid {
        grid-template-columns: auto 1fr auto !important;
        padding: 0.75rem 1rem !important;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none !important;
    }

    header .logo {
        font-size: 1.6rem !important;
        text-align: center;
    }

    header .logo a {
        font-size: 1.6rem !important;
    }

    .header-icons {
        gap: 1rem !important;
    }

    .header-icons a {
        font-size: 0.75rem !important;
    }

    .header-icons .desktop-text {
        display: none;
    }

    .header-icons .mobile-icon {
        display: flex !important;
        align-items: center;
        gap: 0.25rem;
    }

    .header-icons .icon {
        width: 18px;
        height: 18px;
    }

    .header-icons .cart-count {
        font-size: 0.65rem;
        font-weight: 500;
        color: #333;
        margin-left: 1px;
    }

    /* Hero Section - Mobile */
    .hero {
        height: 60vh !important;
        min-height: 400px;
    }

    .hero-content {
        padding: 1.5rem !important;
    }

    .hero-content h2 {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-content .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.85rem !important;
    }

    /* Container - Mobile */
    .container {
        padding: 0 1rem !important;
    }

    /* Informative Section - Mobile */
    .informative-section {
        padding: 2rem 1rem !important;
    }

    .informative-section .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .info-block {
        padding: 1rem 0;
    }

    .info-block div {
        font-size: 2rem !important;
    }

    .info-block h3 {
        font-size: 1.1rem !important;
    }

    .info-block p {
        font-size: 0.9rem !important;
    }

    /* Product Grid - Mobile */
    .product-grid-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Product Card - Mobile */
    .product-card-info {
        padding: 1.25rem 0 !important;
    }

    .product-title {
        font-size: 0.75rem !important;
        height: 2.4em !important;
    }

    .product-price-current {
        font-size: 0.9rem !important;
    }

    .product-price-compare {
        font-size: 0.75rem !important;
    }

    .product-badge {
        top: 0.75rem !important;
        right: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.65rem !important;
    }

    /* Newsletter - Mobile */
    .newsletter-section {
        padding: 2rem 1rem !important;
    }

    .newsletter-section h2 {
        font-size: 1.5rem !important;
    }

    .newsletter-section p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .newsletter-section form > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .newsletter-section input {
        width: 100% !important;
    }

    .newsletter-section .btn {
        width: 100% !important;
        padding: 0.9rem !important;
    }

    /* Typography - Mobile */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    /* Buttons - Mobile */
    .btn {
        padding: 0.85rem 1.75rem !important;
        font-size: 0.85rem !important;
    }

    /* Collection Page - Mobile */
    .collection-page {
        padding: 1.5rem 0 3rem !important;
    }

    .collection-header {
        margin-bottom: 2rem !important;
        padding-bottom: 1.5rem !important;
    }

    .collection-title {
        font-size: 1.75rem !important;
    }

    .collection-count {
        font-size: 0.85rem !important;
    }

    .collection-toolbar {
        display: flex !important;
    }

    .collection-layout {
        flex-direction: column;
        gap: 0 !important;
    }

    .collection-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        z-index: 999;
        overflow-y: auto;
        background: #fff;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .collection-sidebar.active {
        left: 0;
    }

    .sidebar-header {
        display: flex !important;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
    }

    .collection-main {
        width: 100%;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem 1rem !important;
    }

    .load-more-container {
        margin-top: 3rem !important;
        padding-top: 2rem !important;
    }

    .load-more-btn {
        padding: 0.9rem 2rem !important;
        font-size: 0.8rem !important;
        width: 100%;
        max-width: 300px;
    }

    /* Contact Page - Mobile */
    .contact-page {
        padding: 1.5rem 0 3rem !important;
    }

    .contact-header {
        margin-bottom: 2rem !important;
        padding-bottom: 1rem !important;
    }

    .contact-title {
        font-size: 1.5rem !important;
    }

    .contact-subtitle {
        font-size: 0.9rem !important;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .contact-info-list {
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-submit-btn {
        width: 100% !important;
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .header-grid {
        padding: 0.5rem 0.75rem !important;
    }

    header .logo {
        font-size: 1.4rem !important;
    }

    header .logo a {
        font-size: 1.4rem !important;
    }

    .hero {
        height: 50vh !important;
        min-height: 350px;
    }

    .hero-content h2 {
        font-size: 1.75rem !important;
    }

    .hero-content p {
        font-size: 0.85rem !important;
    }

    /* Product Grid - 2 Columns on Very Small Screens */
    .product-grid-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Collection Page - 2 Columns on Very Small Mobile */
    .collection-title {
        font-size: 1.5rem !important;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .collection-sidebar {
        width: 90% !important;
    }

    /* Contact Page - Very Small Mobile */
    .contact-title {
        font-size: 1.25rem !important;
    }

    .form-title,
    .info-title {
        font-size: 1.1rem !important;
    }
}

    .informative-section {
        padding: 1.5rem 0.75rem !important;
    }

    .newsletter-section {
        padding: 1.5rem 0.75rem !important;
    }

    /* Footer - Mobile */
    .site-footer {
        padding: 2.5rem 0 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-col p {
        font-size: 0.85rem !important;
        max-width: 100%;
    }

    /* Scaling Typography for Product Grids on Mobile */
    .product-grid-title {
        font-size: clamp(1.25rem, 4vw, 1.5rem) !important;
        margin-bottom: 1rem !important;
        text-align: center;
    }

    .product-card-title {
        font-size: 0.85rem !important;
    }

    .product-card-price {
        font-size: 0.8rem !important;
    }
}

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.85rem !important;
    }

    .footer-newsletter-form {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100%;
        max-width: 100%;
    }

    .footer-newsletter-form input {
        width: 100% !important;
        padding: 0.9rem !important;
    }

    .btn-footer {
        width: 100% !important;
        padding: 0.9rem !important;
    }

    .footer-copyright {
        margin-top: 2.5rem !important;
        padding-top: 1.5rem !important;
        font-size: 0.8rem !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-grid {
        padding: 1rem 1.5rem !important;
    }

    header .logo {
        font-size: 2rem !important;
    }
    
    header .logo a {
        font-size: 2rem !important;
    }

    .hero {
        height: 70vh !important;
    }

    .hero-content h2 {
        font-size: 3rem !important;
    }

    /* Product Grid - 3 columns on tablet */
    .product-grid-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Footer - Tablet */
    .site-footer {
        padding: 3rem 0 !important;
    }

    .footer-grid {
        gap: 2rem !important;
    }

    .footer-copyright {
        margin-top: 3rem !important;
        padding-top: 1.5rem !important;
    }
}

/* ============================================
   PRODUCT PAGE (PDP) – REDESIGN
   ============================================ */

.pdp {
    background: #fff;
    padding: 1.5rem 0 3rem;
    min-height: 50vh;
}

.pdp__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr minmax(0, 380px);
    gap: 2.5rem;
    align-items: start;
}

.pdp__gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.pdp__gallery-nav-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    order: 2;
}

.pdp__gallery-arrow {
    display: none;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #333;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.pdp__gallery-arrow:hover {
    background: #1a1a1a;
    color: #fff;
}

.pdp__gallery-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.pdp__main-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.pdp__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
}

.pdp__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.pdp__arrow:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.pdp__arrow--prev { left: 12px; }
.pdp__arrow--next { right: 12px; }

.pdp__thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pdp__thumbs::-webkit-scrollbar {
    display: none;
}

.pdp__thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #f0f0f0;
    scroll-snap-align: start;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pdp__thumb:hover {
    border-color: #ccc;
}

.pdp__thumb.is-active {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 1px #1a1a1a;
}

.pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp__info {
    padding-top: 0.25rem;
    position: static;
}

.pdp__header {
    position: static;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee;
    background: none;
    box-shadow: none;
}

.pdp header {
    position: static;
}

.pdp__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    background: none;
    box-shadow: none;
}

.pdp__price-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    background: none;
    box-shadow: none;
}

.pdp__price--current {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.pdp__price--compare {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
}

.pdp__badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c62828;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pdp__form {
    margin-bottom: 1.5rem;
}

.pdp__option {
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.pdp__option-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555;
    margin-bottom: 0.5rem;
}

.pdp__option-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.5rem;
}

.pdp__option-item {
    cursor: pointer;
    min-width: 0;
}

.pdp__option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pdp__option-text {
    display: block;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #333;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
}

.pdp__option-item:hover .pdp__option-text {
    border-color: #999;
    background: #fafafa;
}

.pdp__option-input:checked + .pdp__option-text {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.pdp__qty-wrap {
    margin-bottom: 1.25rem;
}

.pdp__qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.pdp__qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pdp__qty-btn:hover {
    background: #f0f0f0;
}

.pdp__qty-input {
    width: 52px;
    height: 44px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    -moz-appearance: textfield;
}

.pdp__qty-input::-webkit-outer-spin-button,
.pdp__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp__add-wrap {
    margin-bottom: 1rem;
}

.pdp__add {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.pdp__add:hover:not(:disabled) {
    background: #000;
    transform: translateY(-1px);
}

.pdp__add:active:not(:disabled) {
    transform: translateY(0);
}

.pdp__add:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pdp__stock {
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.pdp__stock--out {
    color: #c62828;
    font-weight: 500;
}

.pdp__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #666;
}

.pdp__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.pdp__trust-icon {
    flex-shrink: 0;
    color: #1a1a1a;
}

.pdp__policy-links {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #666;
}

.pdp__policy-links a {
    color: inherit;
    text-decoration: underline;
}

.pdp__policy-links a:hover {
    color: #1a1a1a;
}

@media (min-width: 769px) {
    .pdp__gallery {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem;
    }

    .pdp__gallery-nav-wrap {
        flex-direction: column;
        order: 1;
        flex-shrink: 0;
        width: 100px;
        height: 100%;
        min-height: 0;
    }

    .pdp__gallery-arrow {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 4px 0;
        flex-shrink: 0;
        min-width: 36px;
        min-height: 36px;
    }

    .pdp__thumbs {
        flex: 1;
        min-height: 0;
        max-height: min(550px, calc(60vh + 30px));
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pdp__thumbs::-webkit-scrollbar {
        display: none;
    }

    .pdp__main-wrap {
        order: 2;
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .pdp {
        padding: 1rem 0 2rem;
    }

    .pdp__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }

    .pdp__gallery-arrow {
        display: none !important;
    }

    .pdp__main-wrap {
        order: 1;
        max-height: 45vh;
        margin: 0 auto;
    }

    .pdp__gallery-nav-wrap {
        order: 2;
    }

    .pdp__title {
        font-size: 1.5rem;
    }

    .pdp__price--current {
        font-size: 1.35rem;
    }

    .pdp__thumb {
        width: 76px;
        height: 76px;
    }

    .pdp__arrow {
        width: 40px;
        height: 40px;
    }

    .pdp__arrow--prev { left: 8px; }
    .pdp__arrow--next { right: 8px; }
}

@media (max-width: 480px) {
    .pdp__inner {
        padding: 0 0.5rem;
        gap: 1.25rem;
    }

    .pdp__title {
        font-size: 1.25rem;
    }

    .pdp__price--current {
        font-size: 1.2rem;
    }

    .pdp__option-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdp__thumb {
        width: 64px;
        height: 64px;
    }

    .pdp__option-text {
        padding: 0.45rem 0.5rem;
        font-size: 0.75rem;
    }

    .pdp__add {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-info-reviews-section {
        padding: 1.5rem 0;
    }

    .info-reviews-tabs {
        margin-bottom: 1.25rem;
    }

    .info-tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    .care-section,
    .shipping-section,
    .faq-section {
        margin-top: 1.25rem;
    }

    .product-info-content .care-section h3,
    .product-info-content .shipping-section h3,
    .faq-section__title,
    .pi__title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .description-text,
    .care-text,
    .shipping-text {
        font-size: 0.85rem;
    }

    .product-info-reviews-section {
        padding: 1.5rem 0;
    }

    .product-info-reviews-section .container {
        padding: 0 0.75rem;
    }

    .description-images-gallery {
        margin: 1.5rem 0;
    }

    .pi {
        padding: 1.5rem 0.75rem 2rem;
    }

    .pi__title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.1em;
    }

    .pi__viewer {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        max-width: none;
    }

    .pi__main {
        min-height: 0;
    }

    .pi__main-img {
        max-height: 88vh;
    }

    .pi__bar {
        padding: 0 0.25rem;
    }

    .pi__strip {
        padding: 0.75rem 0.25rem 0;
    }

    .pi__strip-thumb {
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   RELATED PRODUCTS SECTION
   ============================================ */

.related-products-section {
    padding: 4rem 0;
    background: #fafafa;
    margin-top: 4rem;
}

.related-products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-products-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.related-products-divider {
    width: 60px;
    height: 1px;
    background: #1a1a1a;
    margin: 0 auto;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .related-products-section {
        padding: 3rem 0;
        margin-top: 3rem;
    }

    .related-products-title {
        font-size: 1.5rem;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   PRODUCT INFO & REVIEWS SECTION (COMBINED)
   ============================================ */

.product-info-reviews-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    box-sizing: border-box;
}

.product-info-reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.info-reviews-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.info-tab-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -1px;
}

.info-tab-btn:hover {
    color: #333;
}

.info-tab-btn.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.info-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.info-tab-content.active {
    display: block;
}

.product-info-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.description-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.description-text p {
    margin-bottom: 1.5rem;
}

.description-text ul,
.description-text ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.description-text li {
    margin-bottom: 0.75rem;
}

.description-text h2,
.description-text h3,
.description-text h4 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.description-text h2 {
    font-size: 1.5rem;
}

.description-text h3 {
    font-size: 1.25rem;
}

.description-text h4 {
    font-size: 1.1rem;
}

.description-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: none; /* Hidden - shown in gallery instead */
}

/* Description Images Gallery (Product Images tab) – minimal wrapper, big clear images */
/* ============================================
   PRODUCT IMAGES SECTION (Editorial lookbook)
   ============================================ */

.description-images-gallery {
    margin: 2.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

.pi {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 0 2.5rem;
}

/* .pi__title styled via unified section titles above */

.pi__viewer {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 1.5rem;
}

.pi__main {
    margin: 0;
    width: 100%;
    display: block;
    min-height: 0;
}

.pi__main-img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.pi__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0.5rem;
    gap: 1rem;
}

.pi__counter {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #6b6560;
    text-transform: uppercase;
}

.pi__arrows {
    display: flex;
    gap: 0.5rem;
}

.pi__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #d4cfc9;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.pi__arrow:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.pi__strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 0.5rem 0;
}

.pi__strip-thumb {
    width: 56px;
    height: 56px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: #e8e4df;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}

.pi__strip-thumb:hover {
    border-color: #c4beb6;
    transform: scale(1.05);
}

.pi__strip-thumb.is-active {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 1px #1a1a1a;
}

.pi__strip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 769px) {
    .pi {
        padding: 2.5rem 0 3rem;
    }

    .pi__viewer {
        max-width: 820px;
        margin-bottom: 1.75rem;
    }

    .pi__main {
        min-height: 0;
    }

    .pi__main-img {
        max-height: 580px;
    }

    .pi__bar {
        max-width: 820px;
    }

    .pi__strip {
        max-width: 820px;
        padding-top: 1.25rem;
    }

    .pi__strip-thumb {
        width: 64px;
        height: 64px;
    }
}

.care-section,
.shipping-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Unified section titles (Product Information tab) */
.product-info-content .care-section h3,
.product-info-content .shipping-section h3,
.faq-section__title,
.pi__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.care-text,
.shipping-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* FAQ section (Product Information tab) */
.faq-section {
    margin-top: 2.5rem;
    padding-top: 0;
}

/* .faq-section__title styled via unified section titles above */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 1rem 2.25rem 1rem 1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
    transform: translateY(-50%) rotate(-135deg);
}

.faq-item__answer {
    padding: 0 1rem 1rem 1rem;
    color: #666;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.faq-item__answer p {
    margin: 0;
}

.reviews-content {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   PRODUCT DESCRIPTION SECTION (OLD - KEEP FOR REFERENCE)
   ============================================ */

.product-description-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.product-description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -1px;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

.description-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.description-text p {
    margin-bottom: 1.5rem;
}

.description-text ul,
.description-text ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.description-text li {
    margin-bottom: 0.75rem;
}

.description-text h2,
.description-text h3,
.description-text h4 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.description-text h2 {
    font-size: 1.5rem;
}

.description-text h3 {
    font-size: 1.25rem;
}

.description-text h4 {
    font-size: 1.1rem;
}

.description-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: none; /* Hidden - shown in gallery instead */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .product-info-reviews-section {
        padding: 2rem 0;
    }

    .info-reviews-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }

    .info-tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .product-info-content {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .description-text {
        font-size: 0.9rem;
        line-height: 1.6;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .description-images-gallery {
        margin: 1.25rem 0;
    }

    .pi {
        padding: 1.25rem 0.5rem 1.5rem;
    }

    .pi__title {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .pi__main {
        min-height: 0;
    }

    .pi__main-img {
        max-height: 90vh;
    }

    .pi__strip-thumb {
        width: 44px;
        height: 44px;
    }

    .pi__arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .care-section,
    .shipping-section,
    .faq-section {
        margin-top: 1.5rem;
    }

    .product-info-content .care-section h3,
    .product-info-content .shipping-section h3,
    .faq-section__title,
    .pi__title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .care-text,
    .shipping-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .description-text {
        font-size: 0.95rem;
    }

    .product-description-section {
        padding: 3rem 0;
    }

    .description-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   PRODUCT REVIEWS SECTION
   ============================================ */

.product-reviews-section {
    padding: 4rem 0;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.reviews-divider {
    width: 60px;
    height: 1px;
    background: #1a1a1a;
    margin: 0 auto;
}

.reviews-summary {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.reviews-rating-display {
    text-align: center;
}

.rating-stars-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
}

.stars-container {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
}

.star-icon {
    width: 24px;
    height: 24px;
}

.reviews-count {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.reviews-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    align-items: center;
    gap: 0.75rem;
}

.rating-label {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
}

.rating-bar {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.rating-percentage {
    font-size: 0.85rem;
    color: #666;
    text-align: left;
}

.write-review-section {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-write-review:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.4s ease-out;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    color: #ffc107;
    flex-shrink: 0;
}

.star-icon-small {
    width: 14px;
    height: 14px;
}

.review-title {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.review-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-text p {
    margin: 0;
}

.reviews-load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more-reviews {
    padding: 0.875rem 2rem;
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more-reviews:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 768px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .rating-value {
        font-size: 2.5rem;
    }

    .review-item {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-bar-item {
        grid-template-columns: 40px 1fr 35px;
    }

    .product-reviews-section {
        padding: 3rem 0;
    }
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer.active ~ .cart-drawer-overlay,
.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.cart-drawer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin: 0;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.cart-drawer-close:hover {
    color: #000;
    background: #f5f5f5;
}

.cart-drawer-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cart-items-list-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.cart-items-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

.cart-items-list-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items-list-wrapper::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.cart-item-image {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #fafafa;
    align-self: flex-start;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.cart-item-title:hover {
    color: #666;
}

.cart-item-remove {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    color: #d32f2f;
}

.cart-item-variant {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin-top: 0.125rem;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
    width: 100%;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-quantity .quantity-btn {
    width: 28px;
    height: 28px;
    background: #fff;
    border: none;
    border-right: 1px solid #e5e5e5;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    padding: 0;
}

.cart-item-quantity .quantity-btn:last-child {
    border-right: none;
    border-left: 1px solid #e5e5e5;
}

.cart-item-quantity .quantity-btn:hover {
    background: #fafafa;
    color: #1a1a1a;
}

.cart-item-quantity .quantity-input {
    width: 36px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    -moz-appearance: textfield;
}

.cart-item-quantity .quantity-input::-webkit-outer-spin-button,
.cart-item-quantity .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
    flex-shrink: 0;
}

.cart-item-price .price-compare {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
}

.cart-item-price .price-current {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.cart-drawer-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    flex-shrink: 0;
    background: #fff;
    margin-top: auto;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}

.subtotal-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #333;
}

.subtotal-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cart-shipping-note {
    font-size: 0.75rem;
    color: #666;
    margin: 0 0 1rem 0;
    text-align: center;
    line-height: 1.4;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.btn-cart-view,
.btn-cart-checkout {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cart-view {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
}

.btn-cart-view:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-cart-checkout {
    background: #1a1a1a;
    color: #fff;
    border: none;
}

.btn-cart-checkout:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cart Empty State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    min-height: 400px;
}

.cart-empty-icon {
    color: #ddd;
    margin-bottom: 1.5rem;
}

.cart-empty-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.cart-empty-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 2rem 0;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Fix overlay positioning */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 480px) {
    .cart-drawer {
        max-width: 100%;
    }

    .cart-item {
        gap: 0.75rem;
    }

    .cart-item-image {
        width: 40px;
        height: 40px;
    }

    .cart-item-title {
        font-size: 0.8rem;
    }

    .cart-drawer-header {
        padding: 1rem 1.25rem;
    }

    .cart-drawer-footer {
        padding: 1rem 1.25rem;
    }

    .cart-items-list-wrapper {
        padding: 0.75rem 1.25rem;
    }
}

/* ============================================
   CART PAGE
   ============================================ */

.cart-page {
    padding: 3rem 0 4rem;
    min-height: 60vh;
}

.cart-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.cart-page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0;
}

.continue-shopping-link {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.continue-shopping-link:hover {
    color: #1a1a1a;
}

.cart-page-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.cart-items-section {
    flex: 1;
}

.cart-form {
    width: 100%;
}

.cart-items-table {
    width: 100%;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 2px solid #e5e5e5;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
}

.cart-item-product {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-item-image-link {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #fafafa;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cart-item-title:hover {
    color: #666;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: #666;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.cart-item-price .price-compare {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.cart-item-price .price-current {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.cart-item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.cart-item-quantity-controls .quantity-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-right: 1px solid #e5e5e5;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.cart-item-quantity-controls .quantity-btn:last-child {
    border-right: none;
    border-left: 1px solid #e5e5e5;
}

.cart-item-quantity-controls .quantity-btn:hover {
    background: #fafafa;
    color: #1a1a1a;
}

.cart-item-quantity-controls .quantity-input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    -moz-appearance: textfield;
}

.cart-item-quantity-controls .quantity-input::-webkit-outer-spin-button,
.cart-item-quantity-controls .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.cart-item-total .price-compare {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.cart-item-total .price-current {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.cart-item-remove-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.cart-item-remove-btn:hover {
    color: #d32f2f;
    background: #ffebee;
}

.cart-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.btn-update-cart {
    padding: 0.875rem 2rem;
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-update-cart:hover {
    background: #1a1a1a;
    color: #fff;
}

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

.cart-summary-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.cart-summary-details {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.summary-total {
    border-top: 2px solid #1a1a1a;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
}

.summary-label {
    font-size: 0.95rem;
    color: #666;
}

.summary-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.summary-row.summary-total .summary-label,
.summary-row.summary-total .summary-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.summary-value.discount {
    color: #d32f2f;
}

.cart-summary-note {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.cart-summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-continue-shopping-secondary {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: #1a1a1a;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1.5px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-continue-shopping-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.cart-account-note {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.cart-account-note p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cart-account-note a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cart-account-note a:hover {
    color: #666;
}

/* Cart Empty Page */
.cart-empty-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 500px;
}

.cart-empty-page .cart-empty-icon {
    color: #ddd;
    margin-bottom: 2rem;
}

.cart-empty-page .cart-empty-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.cart-empty-page .cart-empty-text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem 0;
    max-width: 400px;
}

.btn-start-shopping {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Cart Page */
@media (max-width: 1024px) {
    .cart-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 2rem 0 3rem;
    }

    .cart-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cart-page-title {
        font-size: 1.5rem;
    }

    .cart-table-header,
    .cart-table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-table-header {
        display: none;
    }

    .cart-table-row {
        padding: 1.5rem 0;
        border-bottom: 2px solid #e5e5e5;
    }

    .col-product {
        grid-column: 1;
    }

    .col-price,
    .col-quantity,
    .col-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }

    .col-price::before {
        content: 'Price: ';
        font-weight: 500;
        color: #666;
    }

    .col-quantity::before {
        content: 'Quantity: ';
        font-weight: 500;
        color: #666;
    }

    .col-total::before {
        content: 'Total: ';
        font-weight: 500;
        color: #666;
    }

    .col-remove {
        position: absolute;
        top: 1.5rem;
        right: 0;
    }

    .cart-item-product {
        gap: 0.75rem;
    }

    .cart-item-image-link {
        width: 80px;
        height: 80px;
    }

    .cart-summary-card {
        padding: 1.5rem;
    }
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-page {
    padding: 3rem 0 4rem;
    min-height: 70vh;
}

.checkout-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkout-step.active .step-number {
    background: #1a1a1a;
    color: #fff;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-step.active .step-label {
    color: #1a1a1a;
    font-weight: 500;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.checkout-main {
    flex: 1;
}

.checkout-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.form-group label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
}

.form-input::placeholder {
    color: #999;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shipping-option:hover {
    border-color: #ccc;
}

.shipping-option input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.shipping-option input[type="radio"]:checked + .shipping-option-content {
    color: #1a1a1a;
}

.shipping-option:has(input[type="radio"]:checked) {
    border-color: #1a1a1a;
    background: #fafafa;
}

.shipping-option-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.shipping-name {
    font-weight: 500;
}

.shipping-price {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.checkout-summary-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.checkout-summary-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.checkout-items {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-item:last-child {
    margin-bottom: 0;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.checkout-item-quantity {
    font-size: 0.85rem;
    color: #666;
}

.checkout-item-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    flex-shrink: 0;
}

.checkout-more-items {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding-top: 0.5rem;
}

.checkout-summary-totals {
    margin-bottom: 1.5rem;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #666;
}

.checkout-summary-row.checkout-total {
    border-top: 2px solid #1a1a1a;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-complete-checkout {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-complete-checkout:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.checkout-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    justify-content: center;
}

.checkout-security svg {
    flex-shrink: 0;
    color: #4caf50;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 2rem 0 3rem;
    }

    .checkout-title {
        font-size: 1.5rem;
    }

    .checkout-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .checkout-steps::before {
        display: none;
    }

    .checkout-step {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        padding: 1.5rem;
    }
}