:root {
    --primary: #0A142F;
    --accent: #C29B57;
    --accent-light: #F4EAD6;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --bg-main: #FFFFFF;
    --bg-light: #F8F8F8;
    --border: #E5E5E5;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.main-content {
    width: 100%;
    background: var(--bg-light);
    min-height: 100vh;
    padding-top: 10px;
    padding-bottom: 80px;
    /* Space for bottom nav on mobile */
}

/* Container for full width */
.container {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.loader-content {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-icon {
    font-weight: 800;
    font-size: 32px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    border-bottom-color: var(--accent);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid transparent;
    border-left-color: var(--primary);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.loader-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadePulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@keyframes fadePulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        letter-spacing: 8px;
    }
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Top Bar */
.top-bar {
    background: #C29B57;
    font-size: 12px;
    color: white;
    overflow: hidden;
}

.top-bar .container {
    padding: 8px 16px;
}

.promo-scroll {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
}

.promo-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.promo-text span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(-40px);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    opacity: 0;
}

.search-overlay.active .search-container {
    transform: translateY(0);
    opacity: 1;
}

.close-search-btn {
    position: absolute;
    right: 0;
    top: -50px;
    font-size: 28px;
    color: var(--text-main);
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2001;
}

.close-search-btn:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

.search-input-wrapper i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--text-main);
}

.search-input {
    width: 100%;
    padding: 16px 40px 16px 40px;
    /* add right padding to prevent text overlap with right edge */
    font-size: 24px;
    font-weight: 500;
    border: none;
    border-bottom: 2px solid var(--border);
    background: transparent;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.search-input::placeholder {
    color: #ccc;
    font-weight: 400;
}

.search-input:focus {
    border-color: var(--accent);
}

.search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 50vh;
    overflow-y: auto;
    padding-bottom: 40px;
}

.search-suggestions::-webkit-scrollbar {
    display: none;
}

.search-suggestions {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.suggestion-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: #94a3b8;
}

.suggestion-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.suggestion-info h4 {
    font-size: 16px;
    font-weight: 500;
}

.suggestion-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Right Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.right-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 100vh;
    background: var(--bg-main);
    z-index: 2001;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.right-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-header h2 {
    font-size: 20px;
    font-weight: 500;
}

.close-drawer-btn {
    font-size: 24px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-drawer-btn:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.drawer-item-info {
    flex-grow: 1;
}

.drawer-item-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.drawer-item-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.drawer-item-remove {
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: color 0.2s;
}

.drawer-item-remove:hover {
    color: #e74c3c;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}


/* Header */
.header-wrapper {
    background: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--border);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-nav {
    display: none;
    /* hidden on mobile */
    gap: 24px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn i,
.icon-btn i {
    font-size: 24px;
    color: var(--text-main);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    background: #C29B57;
    color: var(--bg-main);
    border-radius: 8px;
    letter-spacing: -1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .poster {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-text .arts {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
}

.icon-btn {
    position: relative;
}

.badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: #0A142F;
    border-radius: 20px;
    margin: 16px 0;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 450px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    transition: opacity 0.3s ease;
}

.badge-tag {
    background: var(--accent-light);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.5;
}

.shop-now-btn {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background 0.3s ease;
}

.shop-now-btn:hover {
    background: #152554;
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 47, 0.6);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D9D9D9;
}

.dot.active {
    background: var(--accent);
    width: 16px;
    border-radius: 4px;
}

/* Sections */
.section {
    padding: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.view-all {
    color: var(--accent);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* Category Scroll */
.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 5px;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-item.active-filter {
    transform: translateY(-4px);
}

.category-item.active-filter h3 {
    color: var(--accent);
}

.category-item.active-filter .cat-img {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-color: transparent;
}

.cat-img {
    width: 100px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

@media (min-width: 769px) {
    .category-item {
        min-width: 250px;
    }

    .cat-img {
        width: 250px;
        height: 140px;
        border-radius: 16px;
    }

    .category-item h3 {
        font-size: 16px !important;
        margin-top: 12px;
    }

    .category-item p {
        font-size: 13px !important;
    }
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .cat-img img {
    transform: scale(1.05);
}

.category-item h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.category-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    border: none;
    border-radius: 16px;
    background: var(--bg-light);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid lightgray;
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.product-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.2s;
}

.fav-btn:hover {
    transform: scale(1.1);
}

.fav-btn i {
    font-size: 24px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.add-cart-btn {
    background: var(--bg-alt);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.add-cart-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.add-cart-btn i {
    font-size: 18px;
    color: inherit;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info .price {
    font-size: 15px;
    font-weight: 700;
}

.view-product-btn {
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(194, 155, 87, 0.2);
}

.view-product-btn:hover {
    background: #a98547;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(194, 155, 87, 0.3);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
}

.feature-item {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    background: var(--accent-light);
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Newsletter */
.newsletter-section {
    margin: 32px 0;
    background: var(--accent-light);
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.nl-img {
    width: 80px;
}

.nl-img img {
    width: 100%;
    border-radius: 12px;
}

.nl-content {
    /* Flex item */
}

.nl-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.nl-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.nl-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nl-form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.nl-form input:focus {
    border-color: var(--accent);
}

.nl-form button {
    background: var(--primary);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s;
    width: 100%;
}

.nl-form button:hover {
    background: #152554;
}

/* Sidebar */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    background: var(--bg-main);
    z-index: 1001;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
}

.sidebar-header .logo {
    margin: 0 auto;
}

.close-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-btn:hover {
    color: var(--text-main);
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 40px;
    gap: 32px;
    width: 100%;
}

.sidebar-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.sidebar-actions {
    margin-top: auto;
    padding: 32px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.sidebar-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar-action-btn i {
    font-size: 28px;
}

.sidebar-action-btn .badge {
    top: -4px;
    right: 4px;
}

.sidebar-action-btn:hover {
    color: var(--accent);
    transform: translateY(-4px);
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-main);
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
}

.nav-item i {
    font-size: 24px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.nav-item.active {
    color: var(--accent);
}

.nav-icon-wrap {
    position: relative;
}

/* -------------------------------------
   RESPONSIVE DESIGN: TABLET & DESKTOP
-------------------------------------- */

@media (min-width: 768px) {
    /* Tablet & Desktop Adjustments */

    .hero {
        padding: 40px;
        min-height: 450px;
        flex-direction: row;
        align-items: center;
    }



    .section {
        padding: 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .carousel-dots {
        bottom: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .newsletter-section {
        display: grid;
        grid-template-areas: "img content form";
        grid-template-columns: 100px 1fr 1.5fr;
        padding: 32px;
        text-align: left;
    }

    .nl-img {
        width: 100%;
    }


    .nl-form {
        flex-direction: row;
        width: auto;
    }

    .nl-form button {
        width: auto;
    }
}

@media (min-width: 1024px) {
    /* Desktop Specific Adjustments */

    .container {
        width: 95%;
        max-width: 1400px;
        padding: 0;
        margin: 0 auto;
    }

    .header {
        padding: 24px 0;
    }

    .main-content {
        padding-bottom: 0;
    }

    .bottom-nav {
        display: none;
    }

    .desktop-nav {
        display: flex;
        gap: 40px;
    }

    .desktop-nav a {
        font-size: 16px;
    }

    .hero {
        min-height: 600px;
        margin: 32px 0 64px 0;
        border-radius: 32px;
        padding: 80px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero h1 {
        font-size: 64px;
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 32px;
    }

    /* Desktop Search Overlay */
    .search-overlay {
        padding-top: 15vh;
    }

    .close-search-btn {
        right: 0;
        top: -60px;
        font-size: 36px;
    }

    .search-input-wrapper i {
        font-size: 36px;
    }

    .search-input {
        padding: 24px 24px 24px 60px;
        font-size: 36px;
    }

    .suggestion-item {
        padding: 16px;
        gap: 20px;
    }

    .suggestion-img {
        width: 64px;
        height: 64px;
    }

    .section {
        margin-bottom: 80px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .category-scroll {
        gap: 24px;
        padding: 10px;
    }

    .cat-img {
        width: 100%;
        height: 200px;
        border-radius: 16px;
    }

    .category-item h3 {
        font-size: 18px;
        margin-top: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .features-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .feature-item {
        padding: 32px;
        border-radius: 20px;
        gap: 16px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .newsletter-section {
        margin: 80px 0;
        padding: 60px;
        border-radius: 32px;
        grid-template-columns: 150px 1fr 1.5fr;
        gap: 40px;
    }

    .nl-content h2 {
        font-size: 28px;
    }

    .nl-content p {
        font-size: 16px;
    }

    .nl-form input {
        padding: 16px 24px;
        font-size: 16px;
    }

    .nl-form button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #0d1117;
    /* Sleeker dark mode color */
    color: #e5e7eb;
    padding: 70px 0 30px;
    margin-top: 50px;
    font-family: 'Outfit', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.brand-col .logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-col .logo .logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #d1b88e;
    color: #d1b88e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.brand-col .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-col .logo-text .poster {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.brand-col .logo-text .arts {
    color: #9ca3af;
    font-size: 14px;
    letter-spacing: 2px;
}

.brand-col p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

/* Brand Colors */
.social-links a:nth-child(1) {
    color: #1877F2;
}

/* Facebook */
.social-links a:nth-child(2) {
    color: #E4405F;
}

/* Instagram */
.social-links a:nth-child(3) {
    color: #1DA1F2;
}

/* Twitter */
.social-links a:nth-child(4) {
    color: #E60023;
}

/* Pinterest */

.social-links a:hover {
    transform: translateY(-4px) scale(1.15);
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}

.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pay-icon {
    background: #ffffff;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pay-icon.mc {
    color: #ffffff;
    background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%);
}

.pay-icon.visa {
    color: #1a1f71;
}

.pay-icon.rupay {
    color: #e57200;
}

.pay-icon.upi {
    color: #1c75bc;
    font-style: italic;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .main-footer {
        padding-bottom: 80px;
        /* Space for mobile nav */
    }
}

/* =========================================
   Product Details Page Styles
   ========================================= */
.product-page-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    margin-top: 20px;
    margin-bottom: 80px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.main-product-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 1/1;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.product-thumbnails {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--accent);
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(209, 184, 142, 0.3);
}

.product-details-pane {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 0;
}

.product-category-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(209, 184, 142, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.product-title-h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin: 12px 0 0 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-price-h2 {
    font-size: 36px;
    color: var(--text-main);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 500;
}

.product-badge {
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.option-title {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 12px 24px;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-main);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.size-btn.active,
.size-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(209, 184, 142, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 184, 142, 0.15);
}

.product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    height: 56px;
    background: white;
}

.qty-btn {
    background: transparent;
    color: var(--text-main);
    border: none;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

.qty-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent);
}

.qty-input {
    background: transparent;
    color: var(--text-main);
    border: none;
    width: 50px;
    text-align: center;
    font-size: 18px;
    outline: none;
    pointer-events: none;
    font-weight: 700;
}

.btn-add-to-cart {
    padding: 0 32px;
    height: 56px;
    background: white;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    flex: 1;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy-now {
    padding: 0 32px;
    height: 56px;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    flex: 1;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy-now:hover {
    background: #b59b72;
    border-color: #b59b72;
    box-shadow: 0 8px 20px rgba(209, 184, 142, 0.3);
}

.product-meta {
    margin-top: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    font-size: 24px;
    color: var(--accent);
}

/* =========================================
   Category Details Page Styles
   ========================================= */
.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.category-sidebar {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    height: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-title {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    font-weight: 600;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s;
}

.checkbox-label:hover {
    color: var(--accent);
}

.checkbox-label input {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--bg-secondary);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-header h2 {
    font-size: 28px;
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
}

.sort-dropdown {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

/* =========================================
   Account & Orders Page Styles
   ========================================= */
.orders-layout,
.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.orders-sidebar {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.sidebar-menu li a i {
    font-size: 20px;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: rgba(209, 184, 142, 0.1);
    color: var(--accent);
    transform: translateX(5px);
}

.orders-content,
.account-content {
    background: transparent;
}

.content-box {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.box-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.box-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--text-main);
    font-weight: 600;
}

.order-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s;
}

.order-item:hover {
    transform: translateY(-3px);
    border-color: rgba(209, 184, 142, 0.3);
}

.order-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    margin-bottom: 20px;
    align-items: center;
}

.order-header h4 {
    margin: 0;
    font-size: 18px;
    color: var(--text-main);
}

.order-header p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(209, 184, 142, 0.15);
    color: var(--accent);
}

.status-badge.delivered {
    background: rgba(63, 185, 80, 0.15);
    color: #3fb950;
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.order-product img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-product h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--text-main);
}

.order-product p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(209, 184, 142, 0.15);
}

.btn-primary {
    padding: 14px 30px;
    background: var(--accent);
    border: none;
    color: var(--bg-main);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary:hover {
    background: #b59b72;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 184, 142, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .product-page-layout,
    .category-layout,
    .orders-layout,
    .account-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-sidebar,
    .orders-sidebar,
    .product-gallery,
    .account-sidebar {
        position: static;
    }

    .product-title-h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .btn-add-to-cart,
    .btn-buy-now {
        font-size: 13px;
        padding: 0 16px;
        height: 48px;
    }

    .product-price-block {
        gap: 10px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .product-details-pane {
        gap: 16px;
    }

    .product-price-h2 {
        font-size: 28px;
    }

    .product-price-old {
        font-size: 16px;
    }

    .product-badge {
        padding: 4px 10px;
        font-size: 11px;
    }

    .product-title-h1 {
        font-size: 26px;
        margin-top: 4px;
    }
}

/* NEW PRODUCT CARD STYLES */
.product-card {
    border: 1px solid #e5e7eb !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    padding: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    transition: box-shadow 0.3s ease !important;
}

@media (max-width: 768px) {
    .products-grid {
        gap: 8px;
    }

    .product-card {
        padding: 8px !important;
        border-radius: 12px !important;
    }

    .product-img {
        margin-bottom: 12px !important;
        border-radius: 8px !important;
    }

    .product-info h3 {
        font-size: 14px !important;
    }

    .product-info .price {
        font-size: 13px !important;
    }

    .fav-btn {
        right: 4px !important;
        top: 8px !important;
    }

    .view-product-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        display: block;
        padding: 8px 0;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.product-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

.product-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8fafc;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 0 !important;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
}

.product-rating i {
    color: #facc15;
    font-size: 16px;
}

.reviews-count {
    color: #9ca3af;
}

.product-info h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

.product-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-action-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.product-info .price {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111827 !important;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.icon-btn-square {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s;
}

.icon-btn-square i {
    font-size: 20px;
    color: var(--accent);
}

/* Account Page specific styles */
.account-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 60px;
    align-items: start;
}

.account-sidebar {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: white;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 8px 16px rgba(209, 184, 142, 0.3);
}

.user-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.user-email {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.account-nav-item i {
    font-size: 22px;
    transition: transform 0.3s;
}

.account-nav-item:hover,
.account-nav-item.active {
    background: rgba(209, 184, 142, 0.1);
    color: var(--accent);
}

.account-nav-item:hover i {
    transform: scale(1.1);
}

.account-nav-item.danger {
    color: #ef4444;
}

.account-nav-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.account-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.settings-section {
    margin-bottom: 40px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.account-section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.btn-save {
    padding: 14px 32px;
    background: var(--accent);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(209, 184, 142, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-save:hover {
    background: #b59b72;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(209, 184, 142, 0.3);
}

.icon-btn-square.heart i {
    color: #ef4444;
}

.icon-btn-square:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.add-cart-full-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent-light);
    color: var(--accent);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.add-cart-full-btn:hover {
    background: #e0d0b6;
}

@media (max-width: 768px) {
    .main-footer {
        display: none !important;
    }

    .account-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .address-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btn-save {
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }

    .account-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }

    .account-content {
        padding: 24px !important;
    }

    .product-card {
        padding: 12px !important;
        border-radius: 16px !important;
    }

    .product-img-wrapper {
        border-radius: 8px !important;
        margin-bottom: 12px !important;
    }

    .product-desc {
        display: none !important;
    }

    .product-info h3 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-info .price {
        font-size: 14px !important;
    }

    .icon-btn-square {
        width: 32px !important;
        height: 32px !important;
    }

    .icon-btn-square i {
        font-size: 16px !important;
    }

    .product-action-row {
        margin-bottom: 0 !important;
        align-items: center;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-product-btn {
        width: 100%;
        text-align: center;
        padding: 8px 12px;
        display: block;
        font-size: 13px;
    }

    .top-bar {
        display: none !important;
    }

    .header-wrapper {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .main-content {
        padding-top: 80px !important;
    }
/* SweetAlert2 Premium Customization */
.swal2-popup {
    border-radius: 16px !important;
    font-family: 'Outfit', sans-serif !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
    padding: 1.5em !important;
}

.swal2-popup.swal2-toast {
    padding: 0.75em !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

.swal2-title {
    font-weight: 600 !important;
    color: var(--primary) !important;
    font-size: 1.5em !important;
}

.swal2-popup.swal2-toast .swal2-title {
    font-size: 1em !important;
}

.swal2-html-container {
    color: var(--text-muted) !important;
    font-size: 1em !important;
}

.swal2-confirm {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.swal2-confirm:hover {
    background-color: var(--primary) !important;
}

.swal2-cancel {
    background-color: var(--bg-light) !important;
    color: var(--text-muted) !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease;
}

.swal2-cancel:hover {
    background-color: #e2e2e2 !important;
}

.swal2-icon {
    border-width: 3px !important;
}

.swal2-icon.swal2-error {
    border-color: #F87171 !important;
    color: #F87171 !important;
}

.swal2-icon.swal2-success {
    border-color: #34D399 !important;
    color: #34D399 !important;
}