.preloader-dot,
.preloader-logo {
    animation: 1.5s ease-in-out infinite preloaderPulse;
}

.cart-qty-input,
.deal-image-wrapper,
.feature-card,
.footer-contact-info i,
.newsletter-content,
.pd-color-btn,
.pd-qty-input,
.pd-size-btn,
.place-order-btn,
.secure-badge,
.timer-box {
    text-align: center;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b8941d;
    --accent: #2c3e50;
    --accent-light: #ecf0f1;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon-link,
.nav-link,
.navbar {
    transition: var(--transition);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    overflow-x: hidden;
    background: var(--light);
    color: var(--dark);
}

.display-1,
.display-2,
.display-3,
.display-4,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-brand,
.preloader-logo {
    font-weight: 800;
    font-family: "Playfair Display", serif;
}

p {
    line-height: 1.8;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: 3rem;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.auth-tab.active,
.auth-tab:hover,
.bestsellers-hero-title .gold,
.categories-count i,
.categories-hero-title .gold,
.filter-option:hover,
.filter-search input:focus+i,
.filter-search input:focus~i,
.footer-bottom-links a:hover,
.footer-title .gold,
.navbar-brand .gold,
.od-header-left .order-id-text strong,
.od-info-card h6 i,
.page-link,
.page-link:hover,
.preloader-logo .gold,
.products-hero-title .gold,
.secure-badge i {
    color: var(--primary);
}

.nav-icon-link,
.nav-link,
.navbar-brand {
    color: var(--dark) !important;
}

.preloader-ring {
    position: relative;
    width: 60px;
    height: 60px;
}

.preloader-ring .ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
}

.preloader-ring .ring:first-child {
    border-top-color: var(--primary);
    animation: 1.2s linear infinite spinClockwise;
}

.preloader-ring .ring:nth-child(2) {
    width: 44px;
    height: 44px;
    top: 8px;
    left: 8px;
    border-bottom-color: var(--accent);
    animation: 0.9s linear infinite spinCounterClockwise;
}

.preloader-ring .ring:nth-child(3) {
    width: 28px;
    height: 28px;
    top: 16px;
    left: 16px;
    border-top-color: var(--primary-dark);
    animation: 0.6s linear infinite spinClockwise;
}

.preloader-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spinClockwise {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: none;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.product-badge,
.product-category {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler,
.pd-tabs {
    border: none;
}

.nav-item {
    padding-right: 20px;
}

.nav-icon-link {
    text-decoration: none;
}

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

.cart-badge {
    font-size: 0.65rem;
    padding: 2px 5px;
}

.hero-section {
    background: linear-gradient(135deg, #f9f9f9 0, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-blob-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.15),
            rgba(212, 175, 55, 0.08));
    border-radius: 40% 60% 70% 30%/40% 50% 60%;
    top: -200px;
    right: -100px;
    animation: 20s ease-in-out infinite float-blob;
}

.hero-blob-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg,
            rgba(44, 62, 80, 0.1),
            rgba(44, 62, 80, 0.05));
    border-radius: 30% 70% 45% 55%/50% 30% 70% 40%;
    bottom: -100px;
    left: -50px;
    animation: 25s ease-in-out infinite reverse float-blob;
}

.btn-primary-gold,
.hero-label {
    background: linear-gradient(135deg, var(--primary), #e6c200);
}

@keyframes float-blob {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    75% {
        transform: translate(40px, 10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.8;
}

.btn-primary-gold,
.btn-view-all {
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    font-weight: 600;
    cursor: pointer;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-gold {
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary-gold::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-gold:hover,
.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary-outline {
    background: 0 0;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}

.btn-view-all {
    background: linear-gradient(135deg, #d4af37, #e6c200);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
}

.feature-card:hover,
.hero-badge,
.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}

.deal-content,
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    animation: 4s ease-in-out infinite float-image;
}

@keyframes float-image {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 1.2rem;
    border-radius: 20px;
    z-index: 3;
    animation: 0.8s 0.5s both slide-in;
}

.category-card,
.feature-card {
    position: relative;
    overflow: hidden;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.hero-badge h6 {
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.hero-badge small {
    color: #999;
}

.hero-badge-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #e6c200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.testimonials-section,
section {
    padding: 6rem 0;
}

.deal-wrapper,
.features-section,
.newsletter-wrapper,
.subcategories-section {
    padding: 4rem 0;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card,
.category-overlay .btn,
.feature-icon,
.product-card {
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
}

.feature-card:hover::before,
.footer-links a:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-card h6 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: #999;
    margin: 0;
    font-size: 0.95rem;
}

.category-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    border-radius: 25px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    aspect-ratio: auto;
}

.category-card img,
.category-card-detailed .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.blog-card:hover,
.category-card-detailed:hover,
.category-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card:hover .blog-image,
.category-card-detailed:hover .card-img-wrapper img,
.category-card:hover img,
.product-card:hover .product-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0,
            rgba(0, 0, 0, 0.3) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: #fff;
    z-index: 2;
}

.category-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.category-overlay p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.category-overlay .btn {
    align-self: flex-start;
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.category-overlay .btn:hover,
.od-track-btn {
    background: var(--primary);
    color: #fff;
}

.blog-link:hover,
.blog-view-all:hover,
.checkout-breadcrumb a:hover,
.products-breadcrumb a:hover,
.wishlist-breadcrumb a:hover {
    color: var(--primary-dark);
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #999;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.product-actions,
.product-badge {
    border-radius: 50px;
    position: absolute;
}

.product-card:hover {
    transform: translateY(-12px);
}

.product-image-wrapper {
    position: relative;
    height: 300px;
    background: #f5f5f5;
    overflow: hidden;
}

.blog-image,
.product-image,
.wishlist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-badge {
    top: 15px;
    left: 15px;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.badge-sale {
    background: linear-gradient(135deg, var(--danger), #c0392b);
    color: #fff;
}

.badge-new {
    background: linear-gradient(135deg, var(--success), #229954);
    color: #fff;
}

.badge-hot {
    background: linear-gradient(135deg, var(--warning), #d68910);
    color: #fff;
}

.product-actions {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    background: #fff;
    padding: 0.8rem 1.5rem;
    box-shadow: var(--shadow-md);
}

#scrollTopBtn,
.deal-btn-shop {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.category-card-detailed .card-body,
.product-body {
    padding: 1.8rem;
}

.product-category {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
    text-decoration: none;
}

.product-description {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
    line-height: 1.6;
}

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

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

.product-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.addtocart-btn,
.deal-badge {
    font-weight: 600;
    color: #fff;
}

.product-price-original {
    font-size: 1rem;
    color: #bbb;
    text-decoration: line-through;
}

.footer-trust-badge i,
.product-rating {
    color: var(--primary);
    font-size: 0.9rem;
}

.addtocart-btn {
    background: var(--primary);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.addtocart-btn:hover,
.filter-toggle-btn:hover,
.footer-newsletter-submit:hover {
    background: var(--primary-dark);
}

.deal-section {
    background: linear-gradient(135deg, var(--accent), #34495e);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 4rem;
}

#scrollTopBtn,
.deal-badge {
    background: linear-gradient(135deg, var(--primary), #e6c200);
}

.deal-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(212, 175, 55, 0.2) 0,
            transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.deal-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.deal-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.deal-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
}

.deal-timer {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.timer-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.timer-box small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.deal-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.deal-price-new {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.deal-price-old {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.deal-discount {
    background: var(--danger);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.deal-btn-save,
.deal-btn-shop {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.deal-buttons {
    display: flex;
    gap: 1.2rem;
}

.deal-btn-shop {
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
}

.deal-btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.deal-btn-save {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
}

.deal-btn-save:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.deal-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.blog-card,
.categories-count,
.testimonial-card {
    box-shadow: var(--shadow-sm);
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.2rem;
    border: 3px solid var(--primary);
}

.testimonial-author h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.testimonial-author small {
    color: #999;
    font-size: 0.85rem;
}

.testimonial-rating {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-content {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.2),
            rgba(212, 175, 55, 0.1));
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.08);
    height: 100%;
}

.blog-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.blog-category-accessories {
    background: var(--success);
}

.blog-category-lifestyle {
    background: var(--warning);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #999;
    font-size: 0.85rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--dark);
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link,
.blog-view-all {
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    gap: 1rem;
}

.blog-view-all {
    margin-top: 1rem;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--accent), var(--dark));
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 5rem 3rem;
}

.newsletter-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.categories-hero,
.footer-bottom,
.footer-heading,
.footer-top,
footer {
    position: relative;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.1rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
}

.brand-item,
.social-icon {
    display: flex;
    align-items: center;
}

.newsletter-input::placeholder {
    color: #bbb;
}

.newsletter-input:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.newsletter-submit {
    padding: 1.1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.brands-section {
    background: #fff;
    padding: 4rem 0;
}

.brands-heading {
    font-size: 1rem;
}

.brand-item {
    justify-content: center;
    height: 80px;
    padding: 1rem;
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-item img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

footer {
    background: linear-gradient(180deg, #1a1a1a 0, #0d0d0d 100%);
    color: #fff;
    padding: 5rem 0 0;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

footer::after {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(212, 175, 55, 0.06) 0,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-search i,
.filter-search i {
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

.footer-top {
    z-index: 1;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
}

.footer-description {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact-info {
    color: #bbb;
    line-height: 2;
    font-size: 0.9rem;
}

.footer-contact-info i,
.social-icon {
    color: var(--primary);
    font-size: 1rem;
}

.footer-contact-info i {
    margin-right: 0.6rem;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.25);
    text-decoration: none;
}

.footer-insta-item,
.footer-links a {
    align-items: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    color: #fff;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
}

.footer-links a:hover,
.sidebar-categories a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: "▸";
    font-size: 0.6rem;
    margin-right: 0.5rem;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.footer-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.footer-insta-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.footer-insta-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.avatar-preview img,
.cart-product-img img,
.footer-insta-item img,
.od-item-img img,
.order-card-product-img img,
.order-product-img img,
.pd-thumb img,
.summary-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-insta-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.footer-newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.footer-newsletter-box .form-label {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

#scrollTopBtn,
.footer-app-btn i {
    font-size: 1.3rem;
}

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

.footer-newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-newsletter-input::placeholder {
    color: #777;
}

.footer-app-btn:hover,
.payment-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.bestsellers-sort-select:focus,
.faq-search input:focus,
.footer-newsletter-input:focus,
.sort-select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.footer-newsletter-submit {
    padding: 0.7rem 1.2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.85rem;
}

.footer-app-btn,
.payment-icon {
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.footer-app-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    cursor: pointer;
}

.footer-app-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.2) !important;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #999;
    font-size: 0.85rem;
    padding-bottom: 2rem;
    z-index: 1;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icon,
.payment-methods {
    align-items: center;
    display: flex;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.payment-methods {
    gap: 0.8rem;
    flex-wrap: wrap;
}

.payment-methods-label {
    color: #999;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.payment-icon {
    width: 42px;
    height: 28px;
    border-radius: 6px;
    justify-content: center;
    color: #ccc;
    font-weight: 600;
    font-size: 0.7rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    letter-spacing: 0.5px;
}

.payment-icon:hover {
    background: rgba(212, 175, 55, 0.2);
}

.footer-trust-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #888;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.categories-hero {
    background: linear-gradient(135deg, #f9f9f9 0, #f0f0f0 100%);
    overflow: hidden;
    padding: 5rem 0 4rem;
    margin-bottom: 3rem;
    border-radius: 0 0 40px 40px;
}

.categories-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.categories-count,
.subcategory-chip {
    background: #fff;
    font-weight: 500;
    color: var(--dark);
}

.bestsellers-hero-content,
.categories-hero-content,
.products-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.categories-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-family: "Playfair Display", serif;
}

.categories-hero-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.categories-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.category-card-detailed {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.filter-bar,
.filter-sidebar {
    box-shadow: var(--shadow-sm);
}

.category-card-detailed .card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.category-card-detailed .card-category-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.category-card-detailed .card-item-count {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.category-card-detailed .card-description {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.category-card-detailed .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-card-detailed .card-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

.category-card-detailed .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

.subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.subcategory-chip {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.subcategory-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.subcategory-chip i {
    font-size: 0.8rem;
}

.checkout-breadcrumb a,
.products-breadcrumb a,
.wishlist-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.checkout-breadcrumb .separator,
.products-breadcrumb .separator,
.wishlist-breadcrumb .separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.checkout-breadcrumb .current,
.products-breadcrumb .current,
.wishlist-breadcrumb .current {
    color: var(--dark);
    font-weight: 600;
}

.bestsellers-hero,
.products-hero {
    background: linear-gradient(135deg, #f9f9f9 0, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
    border-radius: 0 0 40px 40px;
}

.bestsellers-hero-pattern,
.products-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.bestsellers-hero-title,
.products-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: "Playfair Display", serif;
}

.bestsellers-hero-subtitle,
.products-hero-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.filter-bar {
    background: #fff;
    border-radius: 20px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.bestsellers-search,
.filter-search {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.bestsellers-search input,
.filter-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    background: #fafafa;
    transition: var(--transition);
    color: var(--dark);
}

.bestsellers-search input:focus,
.filter-search input:focus,
.form-floating-auth input:focus,
.form-floating-custom input:focus,
.form-floating-custom select:focus,
.profile-form-group input:focus,
.profile-form-group select:focus,
.profile-form-group textarea:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: #fff;
}

.filter-search i {
    position: absolute;
    color: #bbb;
    font-size: 1rem;
    transition: var(--transition);
}

.bestsellers-sort-select,
.sort-select {
    padding: 0.8rem 2rem 0.8rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E") right 1rem center/10px no-repeat #fafafa;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    min-width: 180px;
}

.filter-toggle-btn {
    display: none;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.filter-toggle-btn i {
    font-size: 1.1rem;
}

.filter-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: fit-content;
    transition: var(--transition);
}

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

.comment-item:last-child,
.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h6 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.clear-filters,
.pd-category {
    color: var(--primary);
    font-weight: 600;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    flex: 1;
}

.filter-option .count {
    color: #aaa;
    font-size: 0.8rem;
}

.clear-filters {
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.auth-forgot-link:hover,
.auth-switch-link:hover,
.clear-filters:hover,
.view-detail-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.pd-color-btn,
.pd-main-image,
.pd-qty-btn,
.pd-size-btn,
.pd-thumb {
    transition: var(--transition);
}

.bestsellers-page,
.blog-detail-page,
.blog-page,
.cart-page,
.checkout-page,
.faq-page,
.od-page,
.privacy-page,
.product-detail-section,
.profile-page,
.related-products,
.terms-page,
.wishlist-page {
    padding: 2rem 0 5rem;
}

.pd-gallery {
    position: sticky;
    top: 100px;
}

.pd-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    background: #f5f5f5;
}

.pd-category,
.pd-tab-content ul li,
.privacy-content ul li,
.terms-content ul li {
    margin-bottom: 0.5rem;
}

.pd-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.pd-main-image:hover img {
    transform: scale(1.03);
}

.pd-thumbnails,
.pd-variant-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.pd-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    box-shadow: var(--shadow-sm);
}

.pd-thumb.active,
.pd-thumb:hover {
    opacity: 1;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pd-info {
    padding-left: 2rem;
}

.pd-category {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.pd-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-family: "Playfair Display", serif;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1rem;
}

.pd-rating span {
    color: #999;
    font-size: 0.9rem;
}

.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.cart-items-wrapper,
.pd-description,
.pd-variants {
    margin-bottom: 2rem;
}

.pd-actions,
.pd-meta {
    flex-wrap: wrap;
    display: flex;
}

.pd-current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pd-original-price {
    font-size: 1.4rem;
    color: #bbb;
    text-decoration: line-through;
}

.pd-discount-badge {
    background: var(--danger);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.bd-content p,
.pd-variant-group {
    margin-bottom: 1.5rem;
}

.pd-variant-label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.cart-header,
.pd-actions,
.pd-tab-nav {
    margin-bottom: 2rem;
    gap: 1rem;
}

.pd-color-btn,
.pd-size-btn {
    padding: 0.6rem 1.4rem;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 50px;
}

.avatar-upload-btn:hover,
.order-tab:hover,
.pd-color-btn:hover,
.pd-size-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.bd-sidebar-tag:hover,
.bd-tag:hover,
.order-tab.active,
.pd-color-btn.selected,
.pd-size-btn.selected,
.sidebar-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pd-color-btn {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.pd-color-btn span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.pd-color-btn.selected {
    box-shadow: 0 0 0 3px var(--primary);
    transform: scale(1.1);
}

.pd-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.pd-qty-btn,
.pd-qty-input {
    background: 0 0;
    border: none;
}

.pd-qty-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover,
.pd-qty-btn:hover {
    background: #f0f0f0;
    color: var(--primary);
}

.pd-qty-input {
    width: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.pd-qty-input:focus {
    outline: 0;
}

.pd-add-to-cart {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary), #e6c200);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.continue-shopping,
.pd-wishlist-btn {
    align-items: center;
    transition: var(--transition);
}

.auth-submit-btn:hover,
.checkout-btn:hover,
.pd-add-to-cart:hover,
.place-order-btn:hover,
.profile-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.pd-wishlist-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.pd-wishlist-btn:hover {
    color: var(--danger);
    border-color: var(--danger);
    transform: scale(1.05);
}

.pd-meta {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    color: #888;
    font-size: 0.9rem;
    gap: 1rem;
}

.bd-meta i,
.pd-meta span i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.pd-tabs-section {
    padding: 2rem 0 4rem;
}

.pd-tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.pd-tab-link {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    border: none;
    background: 0 0;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

.cart-mobile-card,
.cart-table {
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.pd-tab-link.active,
.pd-tab-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.pd-tab-content {
    line-height: 1.8;
    display: none;
}

.payment-details.active,
.pd-tab-content.active {
    display: block;
}

.pd-tab-content ul {
    padding-left: 1.2rem;
}

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

.blog-header h1,
.cart-header h1,
.checkout-header h1,
.orders-header h1,
.profile-header h1,
.wishlist-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    font-family: "Playfair Display", serif;
}

.continue-shopping {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.continue-shopping:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

.cart-table {
    width: 100%;
    background: #fff;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-collapse: collapse;
}

.cart-table thead th,
.orders-table thead th {
    background: #fafafa;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-table tbody td {
    padding: 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark);
}

.cart-table tbody tr:last-child td,
.od-mobile-item:last-child,
.orders-table tbody tr:last-child td {
    border-bottom: none;
}

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

.cart-product-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.cart-mobile-card .cart-mobile-details h5,
.cart-product-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cart-product-info p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

.cart-price {
    font-weight: 700;
    font-size: 1rem;
}

.cart-price .original {
    display: block;
    font-size: 0.8rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
}

.cart-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.cart-qty-btn,
.cart-qty-input,
.cart-remove-btn {
    background: 0 0;
    border: none;
}

.cart-qty-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-input {
    width: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.cart-remove-btn {
    color: #ccc;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.cart-mobile-items,
.od-items-mobile,
.orders-mobile-cards {
    display: none;
}

.cart-mobile-card {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cart-mobile-card .cart-product-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.cart-mobile-card .cart-mobile-details,
.od-mobile-item-details,
.summary-item-info {
    flex: 1;
}

.cart-mobile-card .cart-mobile-details .variant {
    font-size: 0.8rem;
    color: #999;
}

.cart-mobile-card .cart-mobile-details .price {
    font-weight: 700;
    color: var(--primary);
    margin: 0.4rem 0;
}

.cart-mobile-card .cart-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
}

.cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: fit-content;
}

.cart-summary h4 {
    font-weight: 800;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    color: var(--dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #666;
}

.apply-coupon-btn,
.checkout-btn {
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
}

.summary-row.total,
.summary-total-row.grand-total,
.total-row.grand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    border-bottom: none;
    padding-top: 1rem;
}

.summary-row.total span:last-child,
.summary-total-row.grand-total span:last-child,
.total-row.grand span:last-child {
    color: var(--primary);
    font-size: 1.4rem;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.coupon-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 0.9rem;
}

.coupon-input:focus {
    outline: 0;
    border-color: var(--primary);
}

.apply-coupon-btn {
    background: var(--dark);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9rem;
}

.apply-coupon-btn:hover {
    background: #333;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), #e6c200);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.checkout-breadcrumb,
.wishlist-breadcrumb {
    background: 0 0;
    padding: 1.2rem 0;
    font-size: 0.9rem;
    color: #999;
}

.blog-header,
.checkout-header,
.orders-header,
.profile-header,
.wishlist-header {
    margin-bottom: 2.5rem;
}

.blog-detail-article,
.checkout-form-card,
.comments-section,
.profile-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
}

.checkout-form-card h5,
.profile-form-card h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-form-card h5 i,
.profile-form-card h5 i {
    color: var(--primary);
    font-size: 1.3rem;
}

.form-floating-auth,
.form-floating-custom {
    margin-bottom: 1.2rem;
}

.form-floating-auth label,
.form-floating-custom label,
.profile-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
    display: block;
}

.form-floating-custom input,
.form-floating-custom select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
    color: var(--dark);
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row .form-floating-custom {
    flex: 1;
    min-width: 150px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
}

.payment-method-option:hover {
    border-color: var(--primary);
    background: #fff;
}

.payment-method-option.selected {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.payment-method-option input[type="radio"] {
    accent-color: var(--primary);
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.payment-method-option label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    flex: 1;
}

.payment-method-option label i {
    font-size: 1.4rem;
    color: var(--primary);
}

.payment-details {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    display: none;
}

.checkout-summary {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.orders-table tbody td,
.summary-item,
.summary-total-row {
    border-bottom: 1px solid #f0f0f0;
}

.checkout-summary h4 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.summary-item-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.bd-recent-posts .recent-info h6,
.sidebar-recent-posts .recent-info h6,
.summary-item-info h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.summary-item-info p {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

.summary-item-price {
    font-weight: 700;
    font-size: 0.95rem;
}

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

.place-order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), #e6c200);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin-top: 1.5rem;
    text-decoration: none;
    display: block;
}

.od-header-card,
.od-items-card,
.order-mobile-card,
.orders-table-wrapper {
    box-shadow: var(--shadow-sm);
}

.secure-badge {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

.order-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.order-tab {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

.orders-table-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.od-items-table,
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table tbody td {
    padding: 1.3rem 1.5rem;
    vertical-align: middle;
    color: var(--dark);
}

.order-card-header .order-id,
.order-id {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.order-product-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.order-status {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.view-detail-btn {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.order-mobile-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.order-card-products {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.order-card-product-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.od-item-img,
.od-mobile-item .od-item-img {
    width: 60px;
    height: 60px;
}

.order-card-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.od-mobile-item-details .od-item-qty,
.order-card-info div {
    color: #666;
    font-size: 0.9rem;
}

.order-card-info div strong {
    color: var(--dark);
}

.od-header-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.od-header-left h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    margin-bottom: 0.5rem;
}

.od-header-left .order-id-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.od-header-right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.od-status-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-processing {
    background: rgba(243, 156, 18, 0.1);
    color: #d68910;
}

.status-shipped {
    background: rgba(39, 174, 96, 0.1);
    color: #229954;
}

.status-delivered {
    background: rgba(44, 62, 80, 0.1);
    color: var(--accent);
}

.status-cancelled {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.od-action-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-to-cart-wish:hover,
.od-track-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.od-invoice-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: var(--dark);
}

.od-invoice-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.od-info-line {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.od-info-line i {
    color: var(--primary);
    margin-right: 0.4rem;
}

.od-items-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.comments-section h4,
.od-items-card h5,
.od-total-card h5,
.od-tracking-card h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.od-item-name,
.od-item-price {
    font-weight: 600;
}

.od-items-table td,
.od-items-table th {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    vertical-align: middle;
    color: var(--dark);
}

.od-items-table th {
    font-weight: 600;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.od-item-img {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.od-item-variant,
.od-mobile-item-details .od-item-variant {
    font-size: 0.85rem;
    color: #999;
}

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

.od-item-qty {
    color: #666;
}

.od-item-subtotal,
.od-mobile-item-details .od-item-name {
    font-weight: 700;
}

.od-mobile-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.od-info-card,
.od-tracking-card {
    background: #fff;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.od-mobile-item-details .od-item-price {
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.3rem;
}

.od-mobile-item-subtotal {
    font-weight: 700;
    align-self: center;
}

.od-address-payment-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.od-info-card {
    flex: 1;
    min-width: 250px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.od-info-card h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.od-info-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.od-tracking-card {
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.tracking-timeline {
    position: relative;
    padding-left: 0.5rem;
}

.tracking-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e0e0e0;
}

.tracking-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.tracking-step:last-child {
    margin-bottom: 0;
}

.tracking-step::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e0e0e0;
    z-index: 1;
}

.tracking-step.completed::before {
    background: var(--primary);
    border-color: var(--primary);
}

.tracking-step.current::before {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.tracking-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.2rem;
}

.tracking-status {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.tracking-location {
    font-size: 0.85rem;
    color: #777;
}

.od-total-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.auth-checkbox,
.auth-page {
    display: flex;
    align-items: center;
}

.auth-page {
    padding: 3rem 0 5rem;
    min-height: 80vh;
    justify-content: center;
    background: linear-gradient(135deg, #f9f9f9 0, #f0f0f0 100%);
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.12);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #e6c200);
    border-radius: 4px 4px 0 0;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #999;
    border: none;
    background: 0 0;
    transition: var(--transition);
    position: relative;
}

.auth-tab::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.auth-tab.active::after {
    width: 60%;
}

.auth-forms-container {
    position: relative;
    min-height: 320px;
}

.auth-form-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}

.auth-form-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-form-panel h4 {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.form-floating-auth input,
.profile-form-group input,
.profile-form-group select,
.profile-form-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
    color: var(--dark);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.auth-checkbox {
    gap: 0.5rem;
    color: #666;
    cursor: pointer;
}

.auth-divider,
.terms-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.auth-checkbox input,
.terms-check input {
    accent-color: var(--primary);
}

.auth-forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.auth-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--primary), #e6c200);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
}

.auth-switch-link,
.social-btn {
    font-weight: 600;
    cursor: pointer;
}

.wishlist-card,
.wishlist-remove {
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.auth-divider {
    gap: 1rem;
    color: #bbb;
    font-size: 0.85rem;
}

.auth-divider::after,
.auth-divider::before {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--dark);
}

.social-btn:hover {
    border-color: var(--primary);
    background: #fafafa;
    transform: translateY(-2px);
}

.auth-switch-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}

.auth-switch-link,
.terms-check a {
    color: var(--primary);
    text-decoration: none;
}

.auth-switch-link {
    transition: var(--transition);
}

.terms-check {
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
}

.wishlist-header p {
    color: #777;
    margin-bottom: 0;
}

.bestsellers-grid,
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.wishlist-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

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

.wishlist-img-wrapper {
    position: relative;
    height: 240px;
    background: #f5f5f5;
    overflow: hidden;
}

.wishlist-card:hover .wishlist-img-wrapper img {
    transform: scale(1.08);
}

.wishlist-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 1rem;
}

.btn-add-to-cart-wish,
.nav-link.active::after {
    background: var(--primary);
}

.wishlist-remove:hover {
    background: var(--danger);
    color: #fff;
    transform: scale(1.1);
}

.wishlist-card-body {
    padding: 1.5rem;
}

.wishlist-card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.wishlist-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.wishlist-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.wishlist-card-price .original {
    font-size: 0.9rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.5rem;
}

.wishlist-card-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-add-to-cart-wish {
    flex: 1;
    padding: 0.7rem 0;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.wishlist-empty {
    text-align: center;
    padding: 4rem 0;
}

.wishlist-empty i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.wishlist-empty h5 {
    font-weight: 700;
    color: #999;
}

.wishlist-empty p {
    color: #bbb;
}

.avatar-upload-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #bbb;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
    position: relative;
}

.avatar-upload-btn {
    padding: 0.7rem 1.8rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-remove-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.avatar-remove-link:hover {
    color: var(--danger);
}

.profile-form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.profile-form-group {
    flex: 1;
    min-width: 200px;
}

.profile-save-btn {
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), #e6c200);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.accordion-item,
.author-box,
.faq-search input,
.privacy-content,
.terms-content {
    box-shadow: var(--shadow-sm);
}

.blog-header p {
    color: #777;
}

.blog-detail-sidebar,
.blog-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: fit-content;
}

.bd-sidebar-search,
.sidebar-search {
    position: relative;
    margin-bottom: 2rem;
}

.bd-sidebar-search input,
.sidebar-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    background: #fafafa;
    transition: var(--transition);
}

.sidebar-search input:focus {
    outline: 0;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.bd-sidebar-search i,
.bestsellers-search i,
.sidebar-search i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
}

.bd-recent-posts,
.sidebar-categories,
.sidebar-recent-posts {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.sidebar-categories li {
    margin-bottom: 0.8rem;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.4rem 0;
}

.sidebar-categories .count {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
}

.bd-recent-posts li,
.sidebar-recent-posts li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bd-recent-posts img,
.sidebar-recent-posts img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.bd-recent-posts .recent-info small,
.sidebar-recent-posts .recent-info small {
    color: #999;
    font-size: 0.8rem;
}

.bd-sidebar-tags,
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.bd-sidebar-tag,
.bd-tag,
.sidebar-tag {
    padding: 0.4rem 1rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.pagination-wrapper {
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .filter-sidebar-wrapper {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        z-index: 1050;
        background: #fff;
        overflow-y: auto;
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        border-radius: 0 20px 20px 0;
    }

    .filter-sidebar-wrapper.show {
        left: 0;
    }

    .filter-sidebar-wrapper .filter-sidebar {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .filter-toggle-btn {
        display: flex;
    }

    .filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .filter-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .pd-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .pd-gallery {
        position: static;
    }

    .cart-table-wrapper,
    .od-items-table-wrapper,
    .orders-table-wrapper {
        display: none;
    }

    .cart-mobile-items,
    .od-items-mobile,
    .orders-mobile-cards {
        display: block;
    }

    .checkout-summary {
        position: static;
        margin-top: 2rem;
    }

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

    .od-address-payment-row {
        flex-direction: column;
    }

    .blog-sidebar {
        margin-top: 2rem;
    }
}

.bd-featured-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.bd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bd-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.bd-content {
    color: #444;
    line-height: 1.9;
    font-size: 1rem;
}

.bd-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

.bd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.author-box,
.faq-category-title {
    align-items: center;
    display: flex;
}

.author-box {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    gap: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.author-info h6,
.comment-content h6 {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #777;
    margin: 0;
    font-size: 0.9rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content .comment-date {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.comment-content p {
    color: #555;
    margin-bottom: 0.5rem;
}

.reply-btn {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    background: 0 0;
    border: none;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.comment-form textarea:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.bd-sidebar-search input:focus {
    outline: 0;
    border-color: var(--primary);
    background: #fff;
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--dark);
}

.privacy-content,
.terms-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.privacy-content h1,
.terms-content h1 {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.privacy-content .last-updated,
.terms-content .last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.privacy-content h2,
.terms-content h2 {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-content li,
.privacy-content p,
.terms-content li,
.terms-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.privacy-content ul,
.terms-content ul {
    padding-left: 1.5rem;
}

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

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    margin-bottom: 0.8rem;
}

.faq-header p {
    color: #777;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.faq-search {
    max-width: 500px;
    margin: 0 auto 3rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    background: #fff;
    transition: var(--transition);
}

.faq-search i {
    position: absolute;
    color: #bbb;
    font-size: 1.1rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    gap: 0.6rem;
}

.faq-category-title i {
    color: var(--primary);
    font-size: 1.6rem;
}

.accordion-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px !important;
    margin-bottom: 1rem;
    background: #fff;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    background: #fff;
    box-shadow: none !important;
    padding: 1.2rem 1.5rem;
    border-radius: 14px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: #555;
    line-height: 1.8;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.95rem;
}

.contact-support {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 3rem;
}

.contact-support h4 {
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-support p {
    color: #666;
    margin-bottom: 1.5rem;
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pd-tab-content {
    color: #888 !important;
}

.order-tabs .active {
    color: #fff !important;
}

.bestsellers-filter-bar {
    background: #fff;
    border-radius: 20px;
    padding: 1.2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .bestsellers-hero-title,
    .faq-header h1,
    .pd-current-price,
    .pd-title,
    .preloader-logo,
    .products-hero-title,
    .section-title,
    .stat-item h4 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .category-grid,
    .category-grid-extended {
        grid-template-columns: 1fr;
    }

    .category-card:first-child {
        aspect-ratio: 3/2;
    }

    .deal-buttons,
    .form-row,
    .hero-buttons,
    .newsletter-form,
    .pd-actions {
        flex-direction: column;
    }

    .btn-primary-gold,
    .btn-secondary-outline {
        width: 100%;
        text-align: center;
    }

    .deal-timer {
        gap: 1rem;
    }

    .timer-box {
        min-width: 80px;
        padding: 1rem;
    }

    .newsletter-submit {
        width: 100%;
    }

    .deal-section {
        padding: 2.5rem;
    }

    .newsletter-section {
        padding: 3rem 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .footer-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .author-box,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links,
    .payment-methods {
        justify-content: center;
    }

    .categories-hero-title {
        font-size: 2.2rem;
    }

    .categories-hero {
        padding: 3rem 0 2rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-header h1,
    .checkout-header h1,
    .orders-header h1,
    .privacy-content h1,
    .profile-header h1,
    .terms-content h1,
    .wishlist-header h1 {
        font-size: 1.8rem;
    }

    .od-header-left h1 {
        font-size: 1.4rem;
    }

    .avatar-upload-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .bd-title {
        font-size: 1.6rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1.5rem;
    }
}

.btn-view-all {
    text-decoration: none;
}