:root {
    --primary: #4169E1;
    --primary-hover: #3658c1;
    --secondary: #1E293B;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --gray-25: #f9fafb;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --container-max: 1400px;
    --footer-bg: #0F172A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--gray-50);
    color: var(--text-main);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utilities */
.flex {
    display: flex;
}

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

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

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.w-full {
    width: 100%;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-red-500 {
    color: #ef4444;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

/* Auth & Account Semantic Classes */
.auth-wrapper {
    max-width: 450px;
    margin: 6rem auto;
}

.auth-wrapper-wide {
    max-width: 500px;
    margin: 4rem auto;
}

.form-group {
    margin-bottom: 1rem;
}

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

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.auth-link {
    color: var(--primary);
    font-weight: 600;
}

.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.account-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem auto;
}

@media (min-width: 1024px) {
    .account-layout {
        grid-template-columns: 280px 1fr;
        gap: 3rem;
        margin: 4rem auto;
    }
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.account-nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s;
}

.account-nav-item:hover {
    background: var(--gray-100);
}

.account-nav-item.active {
    background: var(--gray-50);
    color: var(--primary);
}

.account-nav-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .profile-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .address-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-divider {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid var(--gray-100);
}

.user-initials-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1;
}

.primary-light-bg {
    background: var(--primary-light);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--text-muted);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(65, 105, 225, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--secondary);
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-gray {
    background-color: var(--gray-50);
    color: var(--gray-400);
}

.badge-error {
    background-color: #EF4444;
    color: white;
}

/* Color Swatches */
.color-swatch {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 1px solid var(--gray-100);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.swatch-active {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary);
}

/* Product Card Custom Elements */
.icon-btn-card {
    background: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.icon-btn-card:hover {
    background: var(--primary);
    color: white;
}

.btn-card-primary {
    background: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.btn-card-primary:hover {
    background: var(--primary);
    color: white;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.btn-secondary-icon {
    background: var(--gray-50);
    border: none;
    border-radius: var(--radius-xl);
    padding: 0.75rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-icon:hover {
    background: var(--gray-100);
}

.pagination-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.active-filter {
    background: var(--primary-hover);
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
}

/* Header Styles */
.main-header {
    background: white;
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-link:hover {
    color: var(--primary);
}

.top-bar-separator {
    color: var(--gray-500);
}

.top-bar-promo {
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .top-bar-promo {
        text-align: left;
    }
}

/* Header */
.header-main {
    background: white;
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Dropdown */
.relative-group {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 12rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--secondary);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

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

.logo img {
    height: 2.5rem;
    width: auto;
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--secondary);
}

.icon-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: var(--primary);
}

.icon-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #EF4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: white;
    z-index: 1001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.absolute-inset {
    position: absolute;
    inset: 0;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
}

.mobile-nav {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-50);
}

/* Footer Styles */
.main-footer {
    background: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-100);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

/* Footer Refinements */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    color: var(--primary);
    display: flex;
}

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

.social-link {
    color: var(--gray-500);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--primary);
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.app-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.app-link-text {
    display: flex;
    flex-direction: column;
}

.app-link-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
}

.app-link-main {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-icons img {
    height: 1.5rem;
    opacity: 0.8;
}

.placeholder-mastercard,
.placeholder-applepay {
    height: 1.5rem;
    color: var(--gray-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.footer-contact-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    padding: 1rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: var(--gray-300);
}

.breadcrumb-current {
    color: var(--secondary);
}

/* Shop Layout */
.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .shop-layout {
        flex-direction: row;
    }
}

.shop-sidebar {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .shop-sidebar {
        width: 18rem;
    }
}

.shop-main {
    flex-grow: 1;
}

/* Filter Cards */
.filter-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-50);
    margin-bottom: 2rem;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary);
}

.filter-content {
    margin-top: 1rem;
}

/* Shop Toolbar */
.shop-toolbar {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-50);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .shop-toolbar {
        flex-direction: row;
    }
}

.toolbar-info {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.view-toggles {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    color: var(--gray-400);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn.active {
    background: var(--primary);
    color: white;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-3xl);
    padding: 1rem;
    border: 1px solid var(--gray-50);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    background: var(--gray-50);
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-card-list .product-image-container {
    width: 16rem;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.card-actions {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.product-card:hover .card-actions {
    opacity: 1;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-sale {
    color: var(--primary);
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.product-card-list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
}

.product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .back-to-top {
        position: relative;
        bottom: 0;
        right: 0;
    }
}

/* Product Details Page */
.product-details-container {
    padding: 3rem 0;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .product-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Image Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-50);
    position: relative;
    aspect-ratio: 1/1;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-item {
    width: 5rem;
    height: 5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.thumbnail-item.active {
    border-color: var(--primary);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.product-meta-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FBB03B;
}

.stock-status {
    font-weight: 600;
    font-size: 0.875rem;
}

.stock-in {
    color: #10B981;
}

.stock-out {
    color: #EF4444;
}

.price-details {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-old-large {
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.benefit-icon {
    color: var(--primary);
}

/* Options */
.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-label {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.875rem;
}

.color-swatch {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px var(--gray-200);
    cursor: pointer;
    transition: all 0.2s;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.swatch-active {
    box-shadow: 0 0 0 2px var(--primary);
}

.size-options {
    display: flex;
    gap: 0.75rem;
}

.size-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.size-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.size-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.size-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-50);
}

/* Actions */
.purchase-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: var(--secondary);
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--gray-50);
}

.qty-input {
    width: 3rem;
    border: none;
    text-align: center;
    font-weight: 700;
    color: var(--secondary);
    background: none;
}

.btn-purchase-now {
    flex-grow: 1;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(65, 105, 225, 0.4);
}

.btn-purchase-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(65, 105, 225, 0.4);
}

.btn-add-stock {
    padding: 0 1.5rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.wishlist-btn-large {
    padding: 0 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-400);
}

.wishlist-btn-large:hover {
    color: #EF4444;
    border-color: #EF4444;
}

/* Tabs */
.tabs-container {
    margin-top: 4rem;
}

.tab-headers {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 2rem;
}

.tab-btn {
    padding-bottom: 1rem;
    font-weight: 700;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    animation: fadeIn 0.3s ease-out;
}

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

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

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid var(--gray-50);
}

.spec-table td {
    padding: 1rem;
}

.spec-label {
    font-weight: 600;
    color: var(--secondary);
    width: 30%;
}

.spec-value {
    color: var(--text-muted);
}

/* Reviews */
.review-item {
    border-bottom: 1px solid var(--gray-50);
    padding: 2rem 0;
}

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

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name {
    font-weight: 700;
    color: var(--secondary);
}

.review-date {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.review-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Section Title */
.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-400);
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
/* Homepage New Styles */
.hero-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hero-slider {
    background: #F8FAFC;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-discount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.hero-desc {
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 400px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gray-300);
}

.dot.active {
    background: var(--primary);
    width: 1.5rem;
    border-radius: 1rem;
}

/* Category Icons */
.categories-section {
    padding: 3rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 2rem;
    text-align: center;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-item:hover .category-icon-wrapper {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-name {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.view-all {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Banners */
.banners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

@media (min-width: 768px) {
    .banners-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.banner-card {
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.banner-dark { background: #111827; }
.banner-light { background: #F3F4F6; color: var(--secondary); }

.banner-content { flex: 1; z-index: 1; }
.banner-subtitle { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
.banner-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.banner-image { flex: 1; display: flex; justify-content: flex-end; }
.banner-image img { max-height: 200px; }

/* Feedback */
.feedback-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .feedback-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feedback-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.stars { color: #FBBF24; margin-bottom: 1rem; }
.feedback-text { color: var(--gray-600); margin-bottom: 1.5rem; }
.user-info { display: flex; align-items: center; gap: 1rem; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-details h4 { font-size: 0.875rem; font-weight: 700; }
.user-details p { font-size: 0.75rem; color: var(--gray-400); }

/* Subscription */
.subscription-section {
    background: var(--primary);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 2rem;
}

.subscription-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.subscription-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.subscription-desc { margin-bottom: 2rem; opacity: 0.9; }

.subscription-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.subscription-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: none;
}

/* Header Adjustments */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    padding-right: 3rem;
    border-radius: 3rem;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-family: inherit;
}

.search-input-wrapper button {
    position: absolute;
    right: 0.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* Layout Utils */
.grid { display: grid; }
.product-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .product-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.product-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .product-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.flex-responsive {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 768px) {
    .flex-responsive {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Spacing Utils */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-12 { margin-top: 3rem; }
.mt-32 { margin-top: 8rem; }

/* Product Card Modern */
.product-card-modern {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}
.product-card-modern:hover { box-shadow: var(--shadow-md); }

.product-card-horizontal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.product-card-horizontal:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Typography & Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: white; }
.text-gray-400 { color: var(--gray-400); }
.text-yellow-400 { color: #FBBF24; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-mini { font-size: 10px; }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }

/* Effects */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.radius-huge { border-radius: 2.5rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }

.opacity-80 { opacity: 0.8; }
.opacity-60 { opacity: 0.6; }

.backdrop-blur { backdrop-filter: blur(8px); }
.bg-white-10 { background: rgba(255, 255, 255, 0.1); }
.bg-secondary { background: var(--secondary); }
.bg-gray-50 { background: var(--gray-50); }
.bg-gray-100 { background: var(--gray-100); }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aspect-square { aspect-ratio: 1 / 1; }
.w-full { width: 100%; }
.w-1-3 { width: 33.3333%; }
.w-2-3 { width: 66.6667%; }
.w-1-2 { width: 50%; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.relative { position: relative; }
.absolute { position: absolute; }
.top-4 { top: 1rem; }
.left-4 { left: 1rem; }
.overflow-hidden { overflow: hidden; }


/* Footer Light Theme Redesign */
.footer-light {
    background: white !important;
    color: var(--secondary) !important;
    padding: 5rem 0 0;
    border-top: 1px solid var(--gray-100);
}

.footer-light .footer-title {
    color: var(--secondary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-light .footer-link {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-light .footer-link:hover {
    color: var(--primary);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-contact-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.social-links-footer {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-icon-btn {
    color: var(--gray-400);
    transition: color 0.2s;
}

.social-icon-btn:hover {
    color: var(--primary);
}

/* App Download Buttons */
.app-download-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    color: var(--secondary);
    transition: all 0.2s;
}

.app-btn:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-subtitle {
    font-size: 0.625rem;
    color: var(--gray-400);
}

.app-btn-title {
    font-size: 0.875rem;
    font-weight: 700;
}

/* Bottom Bar */
.footer-bottom {
    background: #F8FAFC;
    padding: 1.5rem 0;
    margin-top: 5rem;
    border-top: 1px solid var(--gray-100);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.copyright-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.8125rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-icons img {
    height: 1.5rem;
    opacity: 0.8;
}

.back-to-top {
    background: var(--primary);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

