/* ============================================
   BeautyDash — Premium Beauty Store Stylesheet
   Shop. Glow. Repeat.
   ============================================ */

:root {
    --primary: #CE2363;
    --secondary: #040404;
    --accent: #CF8DA6;
    --light: #F0DDE5;
    --gray: #554E50;
    --white: #FFFFFF;
    --text: #333333;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --transition: all 0.25s ease;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.hidden { display: none !important; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 40px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: #B01E56;
    color: var(--white);
    border-color: #B01E56;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background: #1a1a1a;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-light {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}
.btn-light:hover {
    background: var(--light);
    border-color: var(--light);
    transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar a { color: var(--accent); }
.top-bar a:hover { color: var(--white); }
.top-bar-info { display: flex; gap: 20px; align-items: center; }
.top-bar-info span { display: flex; align-items: center; gap: 5px; }
.top-bar-promo { color: var(--accent); font-weight: 500; }

/* ---------- Header ---------- */
.header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--primary); }
.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}
.logo-img-footer {
    max-height: 60px;
}

/* Search bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}
.search-bar input {
    width: 100%;
    padding: 11px 44px 11px 18px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
    background: #f9f9f9;
}
.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}
.search-bar button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.search-bar button:hover { background: #B01E56; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
}
.header-action:hover { color: var(--primary); }
.header-action svg { width: 22px; height: 22px; }
.header-action .badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}
.mobile-menu-toggle { display: none; font-size: 1.5rem; color: var(--secondary); }

/* ---------- Navigation ---------- */
.nav {
    background: var(--white);
    border-bottom: 1px solid #eee;
}
.nav-list {
    display: flex;
    gap: 0;
    list-style: none;
    justify-content: center;
}
.nav-item { position: relative; }
.nav-item > a {
    display: block;
    padding: 14px 20px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.nav-item > a:hover, .nav-item > a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 0.85rem;
    transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--light); color: var(--primary); padding-left: 26px; }

/* ---------- Hero ---------- */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.hero-bg-img, .hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg-video { z-index: 1; }
.hero-bg-img { z-index: 0; }
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4, 4, 4, 0.5);
    z-index: 2;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-text h1 span { color: var(--primary); }
.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
    position: relative;
    text-align: center;
}
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-image-placeholder::before {
    content: 'BeautyDash';
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-image-placeholder::after {
    content: 'Shop. Glow. Repeat.';
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
}

/* ---------- Trust badges ---------- */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    background: var(--white);
    flex-wrap: wrap;
    overflow: hidden;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-badge svg { width: 24px; height: 24px; color: var(--primary); }
.trust-badges-marquee { display: none; overflow: hidden; white-space: nowrap; padding: 8px 0; background: var(--white); }
.trust-badges-track { display: inline-flex; gap: 40px; animation: trustMarquee 20s linear infinite; }
.trust-badges-track .trust-badge { flex-shrink: 0; }
@keyframes trustMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Categories grid ---------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.category-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--secondary);
    display: block;
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: var(--secondary);
}
.category-card-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 0 auto 10px;
}
.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.category-card:hover .category-card-image img {
    transform: scale(1.08);
}
.category-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.category-card p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ---------- Product grid ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: #ddd;
}
.product-card-image {
    aspect-ratio: 1;
    background: var(--light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-image .product-image-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}
.product-card:hover .product-image-text { color: var(--primary); transform: scale(1.05); }
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.product-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-new { background: var(--primary); color: var(--white); }
.badge-deal { background: var(--secondary); color: var(--white); }
.badge-bestseller { background: #E8A100; color: var(--white); }
.badge-stock { background: #e74c3c; color: var(--white); }
.product-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 2;
    color: var(--gray);
}
.product-wishlist-btn:hover { background: var(--primary); color: var(--white); }
.product-wishlist-btn.active { background: var(--primary); color: var(--white); }
.product-wishlist-btn svg { width: 18px; height: 18px; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-name a { color: var(--secondary); }
.product-name a:hover { color: var(--primary); }
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--gray);
}
.star-rating { display: flex; gap: 1px; }
.star { color: #ddd; font-size: 0.85rem; }
.star.filled { color: #F5A623; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.product-old-price { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.product-card-actions { margin-top: auto; display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; }

/* ---------- Shop layout ---------- */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}
.shop-sidebar {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 20px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}
.shop-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
}
.shop-sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}
.shop-sidebar-close {
    display: none;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.shop-sidebar-close:hover { color: var(--secondary); }
.shop-sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid var(--light);
}
.shop-filter-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.shop-filter-backdrop.open {
    display: block;
    opacity: 1;
}
.filter-group { margin-bottom: 16px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid var(--light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.filter-toggle-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}
.filter-toggle-arrow svg { display: block; }
.filter-group.collapsed .filter-toggle-arrow { transform: rotate(-90deg); }
.filter-group.collapsed .filter-list,
.filter-group.collapsed .filter-price-range,
.filter-group.collapsed .filter-actions { display: none; }
.filter-list { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; }
.filter-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    padding: 4px 0;
    transition: var(--transition);
}
.filter-list label:hover { color: var(--primary); }
.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}
.filter-price-range { display: flex; gap: 8px; align-items: center; }
.filter-price-range input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}
.filter-actions { display: flex; gap: 8px; margin-top: 8px; }
.shop-main { min-width: 0; }
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.shop-header h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--secondary);
}
.shop-header .result-count { font-size: 0.85rem; color: var(--gray); }
.shop-sort { display: flex; align-items: center; gap: 8px; }
.shop-sort select {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: var(--white);
    cursor: pointer;
}
.shop-sort select:focus { outline: none; border-color: var(--primary); }
.shop-toolbar-mobile { display: none; margin-bottom: 16px; }
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.no-results svg { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--accent); }
.no-results h3 { font-size: 1.3rem; color: var(--secondary); margin-bottom: 8px; }

/* ---------- Product detail ---------- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.product-detail-image {
    aspect-ratio: 1;
    background: var(--light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-detail-image .image-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    text-align: center;
    padding: 30px;
}
.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.product-detail-brand {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.product-detail-price .price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.product-detail-price .old-price { font-size: 1.2rem; color: var(--gray); text-decoration: line-through; }
.product-detail-description {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius-md);
}
.product-detail-meta-row { display: flex; gap: 8px; font-size: 0.9rem; }
.product-detail-meta-row strong { color: var(--secondary); min-width: 100px; }
.product-detail-meta-row span { color: var(--text); }
.product-detail-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.quantity-selector button {
    width: 40px;
    height: 44px;
    font-size: 1.2rem;
    color: var(--secondary);
    background: var(--white);
    transition: var(--transition);
}
.quantity-selector button:hover { background: var(--light); color: var(--primary); }
.quantity-selector input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    font-size: 1rem;
    font-weight: 600;
}
.quantity-selector input:focus { outline: none; }
.product-detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}
.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
}
.product-feature svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ---------- Tabs ---------- */
.product-tabs { margin-top: 20px; }
.tab-headers { display: flex; gap: 0; border-bottom: 2px solid #eee; margin-bottom: 24px; }
.tab-header {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    cursor: pointer;
}
.tab-header.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---------- Reviews ---------- */
.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 8px; }
.review-author { font-weight: 700; color: var(--secondary); font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--gray); }
.review-title { font-weight: 600; color: var(--secondary); margin-bottom: 6px; font-size: 0.95rem; }
.review-body { color: var(--text); font-size: 0.9rem; line-height: 1.6; }
.review-form {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}
.review-form h4 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(206,35,99,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rating-input { display: flex; gap: 4px; }
.rating-input star { font-size: 1.8rem; cursor: pointer; color: #ddd; transition: var(--transition); }
.rating-input star.active { color: #F5A623; }
.rating-input star:hover { color: #F5A623; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.cart-items { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-md); padding: 8px 24px; }
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    text-align: center;
    padding: 8px;
}
.cart-item-info h4 { font-size: 0.9rem; color: var(--secondary); margin-bottom: 4px; }
.cart-item-info .cart-item-brand { font-size: 0.75rem; color: var(--gray); }
.cart-item-price { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.cart-item-quantity { display: flex; align-items: center; border: 1px solid #ddd; border-radius: var(--radius-sm); }
.cart-item-quantity button { width: 30px; height: 32px; font-size: 1rem; color: var(--secondary); background: var(--white); }
.cart-item-quantity button:hover { background: var(--light); }
.cart-item-quantity input { width: 40px; height: 32px; text-align: center; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; font-size: 0.85rem; font-weight: 600; }
.cart-item-remove { color: #e74c3c; font-size: 1.2rem; transition: var(--transition); }
.cart-item-remove:hover { color: #c0392b; }
.cart-summary {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 24px;
    position: sticky;
    top: 90px;
}
.cart-summary h3 { font-size: 1.2rem; color: var(--secondary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; }
.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    border-top: 2px solid var(--light);
    padding-top: 12px;
    margin-top: 12px;
}
.summary-row.total .amount { color: var(--primary); }
.promo-input { display: flex; gap: 8px; margin: 16px 0; }
.promo-input input { flex: 1; padding: 10px 14px; border: 1px solid #ddd; border-radius: var(--radius-sm); font-size: 0.85rem; text-transform: uppercase; }
.promo-input input:focus { outline: none; border-color: var(--primary); }
.promo-message { font-size: 0.8rem; margin-bottom: 12px; padding: 8px 12px; border-radius: var(--radius-sm); }
.promo-message.success { background: #e8f5e9; color: #2e7d32; }
.promo-message.error { background: #fce4ec; color: #c62828; }
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state svg { width: 80px; height: 80px; margin: 0 auto 20px; color: var(--accent); }
.empty-state h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--secondary); margin-bottom: 8px; }
.empty-state p { color: var(--gray); margin-bottom: 24px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 30px; align-items: start; }
.checkout-form { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-md); padding: 30px; }
.checkout-section { margin-bottom: 30px; }
.checkout-section h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light);
}
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.payment-method:hover { border-color: var(--accent); }
.payment-method.selected { border-color: var(--primary); background: var(--light); }
.payment-method input { accent-color: var(--primary); }
.payment-method label { cursor: pointer; font-weight: 600; color: var(--secondary); font-size: 0.9rem; }
.payment-method .payment-icon { font-size: 1.3rem; }
.payment-method .payment-icon-svg { display: flex; align-items: center; flex-shrink: 0; }
.payment-method .payment-icon-svg svg { display: block; }
.checkout-summary {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 24px;
    position: sticky;
    top: 90px;
}
.checkout-summary h3 { font-size: 1.2rem; color: var(--secondary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }
.checkout-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eee; }
.checkout-item-image { width: 50px; height: 50px; background: var(--light); border-radius: var(--radius-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--accent); text-align: center; padding: 4px; }
.checkout-item-info { flex: 1; }
.checkout-item-info h4 { font-size: 0.85rem; color: var(--secondary); }
.checkout-item-info .qty { font-size: 0.75rem; color: var(--gray); }
.checkout-item-price { font-weight: 600; color: var(--primary); font-size: 0.85rem; }

/* ---------- Order confirmation ---------- */
.order-confirmation {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.order-confirmation .success-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.order-confirmation .success-icon svg { width: 40px; height: 40px; color: #2e7d32; }
.order-confirmation h1 { font-family: var(--font-heading); font-size: 2rem; color: var(--secondary); margin-bottom: 12px; }
.order-confirmation p { color: var(--gray); margin-bottom: 8px; }
.order-id-display { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin: 16px 0; }

/* ---------- Order tracking ---------- */
.tracking-form { max-width: 500px; margin: 0 auto 40px; }
.tracking-result { max-width: 700px; margin: 0 auto; }
.tracking-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}
.tracking-status-step { text-align: center; flex: 1; position: relative; }
.tracking-status-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #ddd;
    z-index: 0;
}
.tracking-status-step:last-child::after { display: none; }
.tracking-status-step .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.tracking-status-step.completed .step-circle { background: var(--primary); }
.tracking-status-step.current .step-circle { background: var(--primary); box-shadow: 0 0 0 4px rgba(206,35,99,0.2); }
.tracking-status-step .step-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; }
.tracking-status-step.completed .step-label, .tracking-status-step.current .step-label { color: var(--secondary); }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 12px; align-items: start; margin-bottom: 16px; }
.contact-info-item svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-info-item .info-label { font-size: 0.8rem; color: var(--gray); }
.contact-info-item .info-value { font-size: 0.95rem; color: var(--secondary); font-weight: 600; }

/* ---------- Info pages ---------- */
.info-page { max-width: 800px; margin: 0 auto; }
.info-page h1 { font-family: var(--font-heading); font-size: 2rem; color: var(--secondary); margin-bottom: 24px; }
.info-page h2 { font-size: 1.3rem; color: var(--secondary); margin: 24px 0 12px; }
.info-page p { margin-bottom: 16px; line-height: 1.7; color: var(--text); }
.info-page ul { margin-bottom: 16px; padding-left: 20px; }
.info-page ul li { margin-bottom: 8px; list-style: disc; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
    padding: 18px 0;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-toggle { font-size: 1.3rem; color: var(--primary); transition: var(--transition); }
.faq-question.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 0 18px; color: var(--text); font-size: 0.9rem; line-height: 1.6; }

/* ---------- Newsletter ---------- */
.newsletter {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}
.newsletter h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; }
.newsletter p { color: var(--accent); margin-bottom: 24px; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 0; }
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
}
.newsletter-form button:hover { background: #B01E56; }

/* ---------- Footer ---------- */
.footer { background: var(--secondary); color: #aaa; padding: 50px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand p { margin: 16px 0; font-size: 0.85rem; line-height: 1.7; color: #999; }
.footer-brand .footer-contact { font-size: 0.85rem; }
.footer-brand .footer-contact p { margin: 6px 0; }
.footer-brand .footer-contact a { color: var(--accent); }
.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #999; font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}
.footer-payment-icons { display: flex; gap: 10px; justify-content: center; margin-top: 12px; }
.footer-payment-icons .payment-icon {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-payment-icons .payment-icon:hover { background: rgba(255,255,255,0.2); }
.footer-payment-icons .payment-icon svg { display: block; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    text-decoration: none;
    line-height: 0;
}
.whatsapp-float:hover {
    background: #1da851;
    color: #ffffff;
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    display: block;
    pointer-events: none;
}
@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ---------- Toast notification ---------- */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
    max-width: 350px;
}
.toast.success { border-left: 4px solid #2e7d32; }
.toast.error { border-left: 4px solid #c62828; }
.toast.info { border-left: 4px solid var(--primary); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { to { transform: translateX(100%); opacity: 0; } }
.toast.removing { animation: slideOut 0.3s ease forwards; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: #ccc; }
.breadcrumb .current { color: var(--secondary); font-weight: 600; }

/* ---------- Deal banner ---------- */
.deal-banner {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}
.deal-banner h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 8px; }
.deal-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 20px; }
.deal-banner .btn { background: var(--white); color: var(--primary); }
.deal-banner .btn:hover { background: var(--light); }

/* ---------- Loading spinner ---------- */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Mobile menu ---------- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}
.mobile-nav.open { left: 0; display: block; }
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close { font-size: 1.5rem; color: var(--secondary); margin-bottom: 0; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list > li > a {
    display: block;
    padding: 12px 0;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}
.mobile-nav-list > li > a:hover { color: var(--primary); }
.mobile-nav-category { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-category > a { flex: 1; padding: 12px 0; }
.mobile-nav-toggle { cursor: pointer; padding: 12px 0 12px 8px; color: var(--gray); display: flex; align-items: center; transition: transform 0.2s ease; user-select: none; }
.mobile-nav-toggle.open { transform: rotate(90deg); }
.mobile-nav-sub { padding-left: 20px; }
.mobile-nav-sub a { font-size: 0.85rem; font-weight: 400; color: var(--gray); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .search-bar { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav { display: none; }
    .header-actions .header-action span { display: none; }
    .header-actions .header-action svg { width: 24px; height: 24px; }
    .header-main { gap: 10px; padding: 10px 0; }
    .logo-img { max-height: 38px; }
    .header-actions { gap: 10px; }
    .hero { padding: 50px 0; }
    .hero-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .hero-text h1 { font-size: 2rem; }
    .section { padding: 24px 0; }
    .section-title { font-size: 1.5rem; margin-bottom: 4px; }
    .section-subtitle { margin-bottom: 20px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .category-card { padding: 16px 8px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card-body { padding: 12px; }
    .product-name { font-size: 0.85rem; }
    .product-price { font-size: 1rem; }
    .product-card-actions .btn { font-size: 0.8rem; padding: 8px 12px; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar {
        position: fixed;
        top: 0;
        right: -340px;
        width: 320px;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        z-index: 1600;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .shop-sidebar.open { right: 0; display: flex; }
    .shop-sidebar-close { display: block; }
    .shop-sidebar-header { flex-shrink: 0; }
    .shop-sidebar form { flex: 1; overflow-y: auto; }
    .shop-sidebar-footer { flex-shrink: 0; }
    .shop-toolbar-mobile { display: block; }
    .product-detail-layout { grid-template-columns: 1fr; gap: 24px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 60px 1fr auto; gap: 12px; }
    .cart-item-price { display: none; }
    .cart-item-quantity { grid-column: 2; }
    .checkout-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .form-row { grid-template-columns: 1fr; }
    .trust-badges-desktop { display: none !important; }
    .trust-badges-marquee { display: block; }
    .trust-badges { padding: 0; }
    .trust-badge { font-size: 0.8rem; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form input { border-radius: var(--radius-sm); }
    .newsletter-form button { border-radius: var(--radius-sm); }
    .tracking-status { flex-direction: column; gap: 20px; }
    .tracking-status-step::after { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .header-main { gap: 8px; padding: 8px 0; }
    .logo-img { max-height: 32px; }
    .header-actions { gap: 8px; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text p { font-size: 0.95rem; }
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        border-radius: 50px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .hero-buttons .btn-primary {
        width: 100%;
    }
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-outline {
        width: calc(50% - 6px);
        background: transparent;
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.7);
    }
    .hero-buttons .btn-secondary:hover,
    .hero-buttons .btn-outline:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        border-color: #ffffff;
        transform: none;
        box-shadow: none;
    }
    .hero-buttons .btn-primary:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-card { padding: 12px 6px; }
    .category-card h3 { font-size: 0.8rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 1.3rem; }
    .product-detail-info h1 { font-size: 1.4rem; }
    .product-detail-price .price { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 50px 1fr; }
    .cart-item-quantity { grid-column: 2; }
    .cart-item-remove { grid-column: 3; }
}
