/* Premium Fragrance E-commerce Theme - Scent-View */

:root {
    /* Professional 3-Color Palette */
    --primary-color: #252122;
    /* Main Dark Charcoal */
    --secondary-color: #646467;
    /* Medium Gray */
    --accent-color: #252122;
    /* Same as primary for consistency */
    --gold-color: #252122;
    /* Unified dark color */
    --light-bg: #FFFFFF;
    /* Pure White */
    --lighter-bg: #FFFFFF;
    /* Pure White */
    --dark-bg: #252122;
    /* Main Dark Charcoal */
    --text-dark: #252122;
    /* Main Dark Charcoal */
    --text-light: #646467;
    /* Medium Gray */
    --text-muted: #646467;
    /* Medium Gray */
    --border-color: #646467;
    /* Medium Gray Borders */
    --shadow: 0 4px 20px rgba(37, 33, 34, 0.08);
    --shadow-hover: 0 8px 30px rgba(37, 33, 34, 0.12);
    --transition: all 0.3s ease;

    /* Unified Category Colors */
    --men-color: #252122;
    /* Main Dark Charcoal */
    --women-color: #252122;
    /* Main Dark Charcoal */
    --unisex-color: #252122;
    /* Main Dark Charcoal */

    /* Modern Gradients with New Colors */
    --gradient-primary: linear-gradient(135deg, #252122 0%, #646467 100%);
    --gradient-secondary: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
    --gradient-gold: linear-gradient(135deg, #252122 0%, #646467 100%);
    --gradient-dark: linear-gradient(135deg, #252122 0%, #646467 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Clean Professional Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    pointer-events: none;
    z-index: -1;
}

/* Modern Navigation Bar */
.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

/* Modern Logo Section */
.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.4rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    gap: 0px;
}

.logo-link:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.logo-link:hover .logo-image,
.logo-link:hover .logo-name {
    transform: scale(1.05);
}

.logo-image {
    height: 48px;
    width: auto;
    transition: var(--transition);
    animation: logoEntrance 0.8s ease-out;
    display: flex;
    align-items: center;
}

.logo-name {
    height: 60px;
    width: auto;
    margin-left: -6px;
    margin-top: 6px;
    transition: var(--transition);
    animation: logoEntrance 0.8s ease-out;
    display: flex;
    align-items: center;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo-text {
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

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

/* Modern Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-divider {
    width: 1px;
    height: 16px;
    background: #c0c0c0;
    list-style: none;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1.5px;
    background: var(--text-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Search and Actions Section */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    position: relative;
}

.search-form {
    display: flex;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border-radius: 25px;
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 40px;
    box-sizing: border-box;
}

.search-input-group:focus-within {
    border-color: #252122;
    box-shadow: 0 0 0 3px rgba(37, 33, 34, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 4px 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    min-width: 200px;
    height: 32px;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-button {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
}

.search-button:hover {
    color: #252122;
    background: rgba(37, 33, 34, 0.1);
}

/* Cart Button */
.cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.cart-button:hover {
    background: #252122;
    color: white;
    border-color: #252122;
    transform: translateY(-2px);
}

.cart-button i {
    font-size: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #252122;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid white;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(37, 33, 34, 0.15);
    min-width: 22px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0;
    margin: 0;
}

.cart-count:not(:empty) {
    animation: bounce 0.6s ease;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.mobile-logo .logo-image {
    height: 42px;
    display: flex;
    align-items: center;
}

.mobile-logo .logo-name {
    height: 52px;
    margin-left: -4px;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-close:hover {
    background: #FFFFFF;
    color: #252122;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #FFFFFF;
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-nav-link.active {
    border-left: 3px solid var(--text-dark);
    padding-left: 12px;
}

.content-wrapper {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-hero-media {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .desktop-hero-media {
        display: none !important;
    }

    .mobile-hero-media {
        display: block !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.btn-hero {
    background: #252122;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 33, 34, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background: #646467;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 33, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* Modern Product Cards */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-image {
    overflow: hidden;
    position: relative;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    width: 100%;
}

.product-card:hover .product-image {
    background: var(--lighter-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 1;
}

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

.product-info {
    padding: 16px 16px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    text-align: left;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
    width: 100%;
}

.product-fragrance {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
}

.product-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #1f2937;
    line-height: 1.3;
    letter-spacing: -0.01em;
    flex: 1;
    padding-right: 8px;
}





.product-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    white-space: nowrap;
}




/* Section Titles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #252122;
    border-radius: 2px;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 6px;
    padding: 30px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #252122;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--text-dark);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover::after {
    width: 300px;
    height: 300px;
}

.category-card[href*="cat=men"],
.category-card[href*="/category/men"] {
    border-top: 4px solid #252122;
}

.category-card[href*="cat=men"]::before,
.category-card[href*="/category/men"]::before {
    background: linear-gradient(135deg, rgba(37, 33, 34, 0.05) 0%, rgba(37, 33, 34, 0.1) 100%);
}

.category-card[href*="cat=women"],
.category-card[href*="/category/women"] {
    border-top: 4px solid #252122;
}

.category-card[href*="cat=women"]::before,
.category-card[href*="/category/women"]::before {
    background: linear-gradient(135deg, rgba(37, 33, 34, 0.05) 0%, rgba(37, 33, 34, 0.1) 100%);
}

.category-card[href*="cat=unisex"],
.category-card[href*="/category/unisex"] {
    border-top: 4px solid #252122;
}

.category-card[href*="cat=unisex"]::before,
.category-card[href*="/category/unisex"]::before {
    background: linear-gradient(135deg, rgba(37, 33, 34, 0.05) 0%, rgba(37, 33, 34, 0.1) 100%);
}

.category-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-icon {
    font-size: 2.5rem;
    color: #252122;
    transition: var(--transition);
    margin-bottom: 10px;
}

.category-card:hover .category-icon {
    transform: scale(1.1) translateY(-5px);
    animation: floatIcon 2s ease-in-out infinite;
    color: white;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: scale(1.1) translateY(-5px);
    }

    50% {
        transform: scale(1.1) translateY(-10px);
    }
}

.category-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.category-card:hover .category-title {
    color: white;
}

.category-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.category-card:hover .category-count {
    color: white;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .search-input {
        min-width: 150px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-image {
        height: 35px;
    }

    .content-wrapper {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .search-container {
        display: none;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo-image {
        height: 30px;
    }

    .content-wrapper {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== Product Detail Page (PDP) ===== */

.pdp-brand-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pdp-product-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pdp-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

/* Info Pills */
.pdp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.pdp-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #4b5563;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: var(--transition);
}

.pdp-pill i {
    font-size: 0.9rem;
    color: #64748b;
}

.pdp-pill:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* Size Selector */
.pdp-size-section {
    margin-bottom: 28px;
}

.pdp-size-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pdp-size-options {
    display: flex;
    gap: 10px;
}

.pdp-size-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    transition: all 0.25s ease;
}

.pdp-size-btn:hover {
    background: var(--text-dark);
    color: #fff;
    text-decoration: none;
}

.pdp-size-btn.active {
    background: var(--text-dark);
    color: #fff;
}

/* Description */
.pdp-description {
    margin-bottom: 28px;
}

.pdp-description p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

/* Olfactory Pyramid Card */
.pdp-olfactory-card {
    border: 1px solid #d4d4d4;
    border-radius: 0;
    margin-bottom: 32px;
    overflow: hidden;
}

.pdp-olfactory-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #d4d4d4;
}

.pdp-olfactory-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-dark);
}

.pdp-olfactory-icon {
    color: var(--text-muted);
    font-size: 1rem;
}

.pdp-olfactory-body {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pdp-note-group {
    min-width: 0;
}

.pdp-note-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.pdp-note-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.pdp-note-italic {
    font-style: italic;
}

/* If only base notes exist, let them span full width */
.pdp-olfactory-body .pdp-note-group:only-child {
    grid-column: 1 / -1;
}

/* Base notes always span full width when there are other notes */
.pdp-olfactory-body .pdp-note-group:last-child:nth-child(3) {
    grid-column: 1 / -1;
}

/* Action Buttons */
.pdp-actions {
    margin-top: 8px;
}

.pdp-btn-cart {
    width: 100%;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 12px;
}

.pdp-btn-cart:hover:not(:disabled) {
    background: #444;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pdp-btn-cart:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.pdp-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdp-btn-back {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid #d4d4d4;
    transition: all 0.25s ease;
}

.pdp-btn-back:hover {
    background: #f5f5f5;
    border-color: var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
}

.pdp-btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d4d4d4;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.pdp-btn-share:hover {
    background: #f5f5f5;
    border-color: var(--text-dark);
}

/* PDP Responsive */
@media (max-width: 991px) {
    .pdp-product-name {
        font-size: 2.2rem;
    }

    .pdp-olfactory-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .pdp-product-name {
        font-size: 1.8rem;
    }

    .pdp-pills {
        gap: 8px;
    }

    .pdp-pill {
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    .pdp-olfactory-header {
        padding: 12px 16px;
    }

    .pdp-olfactory-body {
        padding: 16px;
    }
}

/* Newsletter Section */
.bg-gradient-primary {
    background: #252122 !important;
}

.bg-gradient-primary h2,
.bg-gradient-primary h3,
.bg-gradient-primary h4,
.bg-gradient-primary h5,
.bg-gradient-primary h6 {
    color: white !important;
}

/* ===== Premium Footer Redesign — 3 Column ===== */
.premium-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 50px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
    border-top: 2px solid #333;
}

/* Grid Container */
.footer-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Column Label */
.footer-col-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* ---------- Left Column: Connect ---------- */
.footer-col-left {
    text-align: left;
}

.footer-social-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-row a {
    color: #fff !important;
    font-size: 1.15rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none !important;
}

.footer-social-row a:hover {
    color: #aaa !important;
    transform: translateY(-2px);
}

/* ---------- Center Column: Newsletter ---------- */
.footer-col-center {
    text-align: left;
}

.footer-newsletter-form {
    width: 100%;
}

.footer-newsletter-input-wrap {
    width: 100%;
    margin-bottom: 16px;
}

.footer-newsletter-input {
    width: 100%;
    background: transparent !important;
    border: 1px solid #555 !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    padding: 12px 14px;
    text-transform: uppercase;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
}

.footer-newsletter-input:focus {
    border-color: #fff !important;
    box-shadow: none !important;
}

.footer-newsletter-btn {
    width: 100%;
    background: #fff;
    border: none;
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    padding: 13px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-newsletter-btn:hover {
    background: #ddd;
}

/* ---------- Right Column: Brand + Legal ---------- */
.footer-col-right {
    text-align: right;
}

.footer-right-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
    display: inline-block;
}

.footer-right-copyright {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-right-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-right-legal a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.footer-right-legal a:hover {
    color: #aaa !important;
}

/* Custom Alert for Minimal Newsletter */
.minimal-alert {
    margin-top: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.minimal-alert.alert-success {
    color: #28a745 !important;
}

.minimal-alert.alert-danger {
    color: #dc3545 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col-left,
    .footer-col-center,
    .footer-col-right {
        text-align: center;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-right-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-right-legal {
        justify-content: center;
    }
}

/* Homepage Newsletter */
.newsletter-form-homepage .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form-homepage .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: white;
}

.newsletter-form-homepage .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.newsletter-form-homepage .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter-form-homepage .btn {
    background: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    color: #252122;
    transition: var(--transition);
}

.newsletter-form-homepage .btn:hover {
    background: #646467;
    color: white;
    transform: translateY(-2px);
}

.newsletter-form-homepage .btn:disabled {
    opacity: 0.7;
    transform: none;
}

#homepageNewsletterMessage {
    margin-top: 1rem;
    border-radius: 8px;
    border: none;
}

#homepageNewsletterMessage.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

#homepageNewsletterMessage.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-right {
    animation: slideInRight 0.6s ease-out;
}

/* Scroll Animations */
.fade-in.animate,
.slide-up.animate,
.slide-left.animate,
.slide-right.animate {
    animation-play-state: running;
}

/* Product Card Animations */
.product-card {
    animation: fadeIn 0.6s ease-out;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Product Detail Page */
.product-detail-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-detail,
.product-gallery {
    animation: fadeIn 0.6s ease-out;
}



/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: #252122;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #646467;
}

/* Additional Styling for Better Consistency */

/* Button Styling */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    padding: 10px 20px;
}

.btn-primary {
    background: #252122;
    color: white;
}

.btn-primary:hover {
    background: #646467;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 33, 34, 0.3);
}

.btn-outline-primary {
    border: 2px solid #252122;
    color: #252122;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #252122;
    color: white;
    transform: translateY(-2px);
}

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

.btn-outline-secondary:hover {
    background: var(--text-light);
    color: white;
    transform: translateY(-2px);
}

/* Form Styling */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: #252122;
    box-shadow: 0 0 0 3px rgba(37, 33, 34, 0.1);
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: var(--text-light);
}

.breadcrumb-item a {
    color: #252122;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #646467;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Badge Styling */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Modal Styling */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 25px;
}

/* Alert Styling */
.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
}

.alert-info {
    background: rgba(37, 33, 34, 0.1);
    color: #252122;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(37, 33, 34, 0.3);
    border-radius: 50%;
    border-top-color: #252122;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cart Summary Styling */
.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.cart-summary h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
}

.cart-summary .d-flex {
    margin-bottom: 10px;
}

.cart-summary .fw-bold {
    color: #252122;
}

/* Product Meta Styling */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #FFFFFF;
    border-radius: 8px;
    border-left: 4px solid #252122;
    transition: var(--transition);
}

.meta-item:hover {
    background: rgba(37, 33, 34, 0.02);
    transform: translateX(5px);
}

.meta-item i {
    color: #252122;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.meta-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Related Products Section */
.related-products {
    background: #FFFFFF;
    padding: 40px 0;
    margin-top: 40px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .cart-summary {
        position: static;
        margin-top: 20px;
    }

    .product-meta {
        gap: 8px;
    }

    .meta-item {
        padding: 10px 12px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header,
    .modal-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .form-control {
        padding: 10px 12px;
    }

    .cart-summary {
        padding: 20px;
    }

    .meta-item {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

/* Cart Page Styling - Clean & Minimalist */
.cart-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.cart-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
}

/* New Beautiful Cart Layout */
.cart-items-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cart-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.cart-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.cart-items-list {
    padding: 0;
}

.cart-item-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f8f8f8;
    transition: background-color 0.3s ease;
}

.cart-item-card:hover {
    background-color: #fafafa;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.3s ease;
    width: fit-content;
}

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

.cart-item-price,
.cart-item-subtotal {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.cart-item-quantity {
    display: flex;
    justify-content: center;
}

.cart-quantity-input {
    width: 60px;
    height: 40px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cart-quantity-input:focus {
    outline: none;
    border-color: #252122;
    box-shadow: 0 0 0 3px rgba(37, 33, 34, 0.1);
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}

.continue-shopping-btn {
    background: #252122;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 33, 34, 0.3);
    display: inline-block;
}

.continue-shopping-btn:hover {
    background: #646467;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 33, 34, 0.4);
}

.cart-summary-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* Beautiful Cart Summary */
.cart-summary-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    height: fit-content;
    border: 1px solid rgba(37, 33, 34, 0.1);
}

.cart-summary-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.cart-summary-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #252122;
    border-radius: 2px;
}

.cart-summary-content {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background-color: rgba(37, 33, 34, 0.05);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.summary-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.taxes-item .summary-label {
    color: #252122;
    font-weight: 600;
}

.taxes-text {
    color: #252122;
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    background: linear-gradient(135deg, rgba(37, 33, 34, 0.1) 0%, rgba(37, 33, 34, 0.05) 100%);
    margin: 1.5rem -1rem 0;
    padding: 1.5rem 1rem;
    border-radius: 12px;
}

.total-label {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.total-value {
    font-size: 1.3rem;
    color: #252122;
    font-weight: 800;
}

.checkout-button {
    width: 100%;
    background: #252122;
    border: none;
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 33, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.checkout-button:hover {
    background: #646467;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 33, 34, 0.4);
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:active {
    transform: translateY(-1px);
}

/* Share Button Styling */
.share-dropdown .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(37, 33, 34, 0.1);
    padding: 0.5rem;
    min-width: 200px;
}

.share-dropdown .dropdown-header {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.share-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-dropdown .dropdown-item:hover {
    background-color: rgba(37, 33, 34, 0.1);
    transform: translateX(2px);
}

.share-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

.share-dropdown .input-group {
    margin-top: 0.5rem;
}

.share-dropdown .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid #e9ecef;
    font-size: 0.8rem;
}

.share-dropdown .btn {
    border-radius: 0 8px 8px 0;
    border: 1px solid #e9ecef;
    background: var(--secondary-color);
    color: white;
    transition: all 0.3s ease;
}

.share-dropdown .btn:hover {
    background: #646467;
    transform: scale(1.05);
}

/* Empty Cart Styling */
.empty-cart-container {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.empty-cart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--gold-color));
}

.empty-cart-icon {
    margin-bottom: 2.5rem;
    position: relative;
}

.empty-cart-icon i {
    font-size: 5rem;
    color: #252122;
    opacity: 0.8;
    animation: cartFloat 3s ease-in-out infinite;
}

@keyframes cartFloat {

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

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

.empty-cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #252122;
    margin-bottom: 1.5rem;
}

.empty-cart-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.continue-shopping-btn {
    background: #252122;
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 33, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.continue-shopping-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.continue-shopping-btn:hover {
    background: #646467;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 33, 34, 0.4);
}

.continue-shopping-btn:hover::before {
    left: 100%;
}

/* Explore Collections Section */
.explore-collections {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
    position: relative;
}

.explore-collections::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #252122;
    border-radius: 2px;
}

.collections-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.collections-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #252122;
    border-radius: 2px;
}



/* Cart Table Styling */
.cart-table-container {
    padding: 2rem;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
}

.cart-table-body {
    padding: 1rem 0;
}

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

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

.cell-product {
    display: flex;
    align-items: center;
}

.product-info {
    display: flex;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5e6d3;
}

.product-details {
    flex-grow: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.remove-link {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: var(--transition);
}

.remove-link:hover {
    color: #dc3545;
}

.cell-price,
.cell-subtotal {
    font-weight: 600;
    color: var(--text-dark);
}

.cell-quantity {
    display: flex;
    justify-content: center;
}

.quantity-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.quantity-input:focus {
    border-color: #252122;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 33, 34, 0.1);
}

.cart-table-footer {
    padding: 1.5rem 0 0 0;
    text-align: right;
}

.continue-shopping-link {
    color: #252122;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.continue-shopping-link:hover {
    color: #646467;
    text-decoration: underline;
}

/* Cart Summary Styling */
.summary-container {
    height: 100%;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.taxes-row {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    background: #252122;
    border: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #646467;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 33, 34, 0.3);
}

/* Responsive Design for Cart */
@media (max-width: 768px) {
    .cart-page-title {
        font-size: 2rem;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .cart-item-details {
        align-items: center;
    }

    .cart-item-price,
    .cart-item-subtotal {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .cart-quantity-input {
        width: 80px;
        height: 45px;
        font-size: 1.1rem;
    }

    .cart-container,
    .cart-summary-container {
        padding: 1rem;
    }

    .empty-cart-container {
        padding: 4rem 1.5rem;
    }

    .empty-cart-title {
        font-size: 2rem;
    }

    .empty-cart-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .continue-shopping-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }

    .collections-title {
        font-size: 1.75rem;
    }

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

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

    .summary-item {
        padding: 0.75rem 0;
    }

    .summary-item:hover {
        margin: 0 -0.5rem;
        padding: 0.75rem 0.5rem;
    }

    .summary-total {
        margin: 1rem -0.5rem 0;
        padding: 1rem 0.5rem;
    }

    .checkout-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Custom Range Slider Styling */
.form-range {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #252122;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(37, 33, 34, 0.3);
    transition: var(--transition);
}

.form-range::-webkit-slider-thumb:hover {
    background: #646467;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 33, 34, 0.4);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
    transition: var(--transition);
}

.form-range::-moz-range-thumb:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.form-range::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
    transition: var(--transition);
}

.form-range::-ms-thumb:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.form-range::-webkit-slider-track {
    background: var(--border-color);
    height: 6px;
    border-radius: 3px;
}

.form-range::-moz-range-track {
    background: var(--border-color);
    height: 6px;
    border-radius: 3px;
    border: none;
}

.form-range::-ms-track {
    background: var(--border-color);
    height: 6px;
    border-radius: 3px;
    border: none;
    color: transparent;
}

/* Policies Page Theme Update */
.policy-card {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 0;
    margin-bottom: 32px;
    overflow: hidden;
}

.policy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #d4d4d4;
    background: transparent;
}

.policy-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0;
}

.policy-icon {
    color: var(--text-muted);
    font-size: 1rem;
}

.policy-content {
    padding: 24px;
}

.policy-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.policy-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.policy-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.contact-info-card {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 30px;
    text-align: center;
}

.contact-info-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #444;
}

.policy-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: var(--text-muted);
}

/* Cart & Checkout Page Minimal Theme Overrides */
.cart-page-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
}

.cart-container,
.cart-items-container {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #d4d4d4;
}

.cart-header {
    border-bottom: 1px solid #d4d4d4;
    padding: 16px 24px;
    background: transparent;
}

.cart-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0;
}

.cart-item-card {
    border-bottom: 1px solid #d4d4d4;
}

.cart-item-image {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #d4d4d4;
}

.cart-item-image img {
    border-radius: 0;
}

.cart-item-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cart-item-price,
.cart-item-subtotal {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.cart-quantity-input {
    border-radius: 0;
    border: 1px solid #d4d4d4;
    box-shadow: none;
    font-weight: 500;
}

.cart-quantity-input:focus {
    border-color: var(--text-dark);
    box-shadow: none;
}

.cart-summary-container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.cart-summary-card {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #d4d4d4;
    padding: 24px;
}

.cart-summary-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: left;
}

.cart-summary-title::after {
    display: none;
}

.summary-item {
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:hover {
    background-color: transparent;
    margin: 0;
    padding: 1rem 0;
}

.summary-total {
    background: transparent;
    border-radius: 0;
    border-top: 1px solid #d4d4d4;
    margin: 1rem 0 0;
    padding: 1.5rem 0 0;
}

.checkout-button,
.continue-shopping-btn,
.modal-content .btn {
    border-radius: 0;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: none;
    padding: 14px 24px;
    background: var(--text-dark);
    color: #fff;
    border: 1px solid var(--text-dark);
}

.checkout-button::before,
.continue-shopping-btn::before {
    display: none;
}

.checkout-button:hover,
.continue-shopping-btn:hover,
.modal-content .btn-primary:hover {
    background: #fff;
    color: var(--text-dark);
    box-shadow: none;
    transform: none;
}

.empty-cart-container {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #d4d4d4;
}

.empty-cart-container::before {
    display: none;
}

.empty-cart-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Modal adjustments for elegance */
.modal-content {
    border-radius: 0;
    border: 1px solid #d4d4d4;
}

.modal-header {
    border-bottom: 1px solid #d4d4d4;
    border-radius: 0;
    background: #fdfdfd;
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.modal-footer {
    border-top: 1px solid #d4d4d4;
}

.modal-content .form-control,
.modal-content .form-select {
    border-radius: 0;
    border: 1px solid #d4d4d4;
}

.modal-content .form-control:focus {
    border-color: var(--text-dark);
    box-shadow: none;
}

.modal-content .btn-secondary {
    background: #f5f5f5;
    color: var(--text-dark);
    border: 1px solid #d4d4d4;
}

.modal-content .btn-secondary:hover {
    background: #e0e0e0;
    color: var(--text-dark);
}

/* Cart Item Remove Button Overlay */
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.15rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.cart-item-remove:hover {
    color: var(--text-dark);
}

/* Elegant Notifications */
.theme-notification {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-left: 4px solid var(--text-dark);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.notification-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    margin-left: 15px;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Feature Box Typography (Why Choose Section) */
.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #646467;
    line-height: 1.6;
}

/* =========================================================
   Pricing block (strikethrough original + current + badge)
   Used on every product card and the PDP detail price.
   ========================================================= */
.price-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1.1;
}
.price-block .price-original {
    text-decoration: line-through;
    color: #646467;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}
/* Badge sits right next to the current price */
.price-block .price-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.price-block .price-current {
    color: #252122;
    font-weight: 700;
    font-size: 1.05rem;
}
.price-block .price-discount {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.4;
    white-space: nowrap;
}
/* Monochrome theme: gray for the standard -50%, dark for sale -60% */
.price-block .price-discount.regular-badge-pct {
    background: #646467;
    color: #fff;
}
.price-block .price-discount.sale-badge-pct {
    background: #252122;
    color: #fff;
}

/* PDP detail page price */
.pdp-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin: 0.5rem 0 1.25rem;
}
.pdp-price-original {
    text-decoration: line-through;
    color: #9a9a9a;
    font-size: 1rem;
    font-weight: 400;
}
.pdp-price {
    color: #252122;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
}
.pdp-price-badge {
    display: inline-block;
    background: #646467;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.pdp-price-badge.sale {
    background: #252122;
    color: #fff;
}

/* =========================================================
   Sale nav link — stands out, on theme (dark pill, bold)
   ========================================================= */
.nav-link.sale-link,
.mobile-nav-link.sale-link {
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    position: relative;
}
.nav-link.sale-link span,
.mobile-nav-link.sale-link span {
    background: #252122;
    color: #fff !important;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
    display: inline-block;
}
.nav-link.sale-link:hover span,
.mobile-nav-link.sale-link:hover span {
    background: #646467;
    transform: scale(1.05);
}
.nav-link.sale-link.active span,
.mobile-nav-link.sale-link.active span {
    background: #646467;
    box-shadow: 0 2px 6px rgba(37, 33, 34, 0.3);
}
.mobile-nav-link.sale-link {
    padding: 12px 0;
}

/* =========================================================
   Sale page header / hero — monochrome theme
   ========================================================= */
.sale-hero { padding: 1rem 0 2rem; }
.sale-eyebrow {
    display: inline-block;
    background: #252122;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.sale-h1 {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #252122;
}
.sale-h1 .sale-pct {
    color: #646467;
    white-space: nowrap;
}
.sale-counter-badge {
    background: #252122;
    color: #fff;
    padding: 8px 16px;
}
.sale-add-btn {
    background-color: #252122;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}
.sale-add-btn:hover {
    background-color: #646467;
    color: #fff;
    transform: translateY(-1px);
}
.sale-seo-copy {
    margin-top: 3rem;
    padding: 2rem 1rem;
    border-top: 1px solid var(--border-color);
}

/* Adjust the existing .product-price wrapper in cards so the new
   inline-flex price-block lays out cleanly inside it. */
.product-card .product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.product-card .product-price.price-block {
    margin: 0;
    padding: 0;
    text-align: right;
}