:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f5f0;
    --accent-color: #b59b54;
    --text-main: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
}

body.dark-mode {
    --primary-color: #f0e6d3;
    --secondary-color: #121212;
    --text-main: #e0e0e0;
    --text-light: #aaaaaa;
    --border-color: #333333;
    --white: #1e1e1e;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 25px rgba(0,0,0,0.4);
    --navbar-bg: rgba(18, 18, 18, 0.97);
    --card-bg: #1e1e1e;
}

/* Dark Mode Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    line-height: 1;
    padding: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
    margin-top: 15px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons svg {
    cursor: pointer;
    transition: var(--transition);
}

.header-icons svg:hover {
    color: var(--accent-color);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
}

/* Hero Section - AUTO HEIGHT (image drives the height) */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    padding-top: 80px; /* Offset for fixed navbar on desktop */
}

.hero-fullscreen {
    display: block;
    height: auto;
    min-height: unset;
}

/* Grid stacking: all slides overlap each other, image drives height */
.hero-bg-slider {
    display: grid;
    grid-template-areas: 'stack';
    width: 100%;
    position: relative; /* so arrows/dots inside are positioned relative to this */
}

.hero-slide {
    grid-area: stack;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    width: 100%;
    display: block;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Full screen width hero image - completely uncropped */
.hero-slide .hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Invisible full-banner clickable link */
.hero-click-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    cursor: pointer;
    display: block;
}

/* Keep arrows and dots above everything */
.hero-fullscreen .hero-arrow,
.hero-fullscreen .hero-slider-dots {
    z-index: 10;
}



/* OLD hero-content & hero-image-wrapper (kept for other pages) */
.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Collection Section */
.product-section {
    padding: 100px 5%;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-grid, .shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 20px;
}

@media (max-width: 1024px) {
    .product-grid, .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid, .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
}

.product-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 1 / 1;
    background-color: #f7f7f7;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 4;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .quick-info-btn {
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay .quick-info-btn {
    transform: translateY(0);
}

/* Dots pagination indicator */
.product-image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.product-image-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s, transform 0.3s;
}

.product-image-dots .dot.active {
    background-color: #ffffff;
    transform: scale(1.15);
}

.product-card:hover .product-image-dots {
    opacity: 1;
}

/* Navigation arrows overlay */
.image-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
    pointer-events: auto;
}

.image-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.product-card:hover .image-arrow {
    opacity: 1;
}

.product-info {
    text-align: left;
    padding: 4px 0 0;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    margin: 4px 0 2px;
    color: var(--primary-color);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.7em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 6px;
}

.rating-stars {
    color: #15803d;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
}

.price-container {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
    margin: 2px 0 8px;
}

.current-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.old-price {
    font-size: 0.88rem;
    color: #888888;
    text-decoration: line-through;
}

.product-description-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 4px 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
}

.card-size-selector-wrapper {
    margin: 6px 0 12px;
    width: 100%;
}

.prod-size-select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-main);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    font-size: 0.85rem;
    transition: border-color 0.3s;
}

.prod-size-select:hover {
    border-color: var(--accent-color);
}

.add-to-cart-card-btn {
    width: 100%;
    margin-top: 4px;
}

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 80px 5%;
    background-color: var(--secondary-color);
    color: var(--text-main);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #111111;
    color: var(--white);
    padding: 80px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-brand p {
    color: #999999;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links a {
    display: block;
    color: #999999;
    margin-bottom: 10px;
}

.footer-links a:hover,
.social-icons a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #999999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Why Us Section */
.why-section {
    padding: 100px 5%;
    background-color: #111111;
    color: var(--white);
}

.why-section .section-header h2 {
    color: var(--accent-color);
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.why-text-content {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(181, 155, 84, 0.2);
}

.why-intro {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.why-list li svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.why-list li strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.why-list li span {
    color: #999999;
    font-size: 0.95rem;
}

.why-images-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.why-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.why-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(181, 155, 84, 0.2);
}

.why-img {
    width: 100%;
    height: auto;
    display: block;
}

.claims-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.claim-item {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.claim-item h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.claim-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Gifts Section */
.gifts-section {
    padding: 80px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.gifts-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.gifts-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gifts-header p {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.gifts-image-wrapper {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gifts-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 5%;
    background-color: #0d0d0d;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
}

.reviews-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(181, 155, 84, 0.3);
}

.reviews-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.reveal-fade.active {
    opacity: 1;
}

/* Category Headers */
.category-header {
    text-align: center;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    position: relative;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.category-header h3::before,
.category-header h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
}

.category-header h3::before { left: -50px; }
.category-header h3::after { right: -50px; }

/* Text Reviews Grid */
.text-reviews-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.review-card {
    background: #1a1a1a;
    border: 1px solid rgba(181, 155, 84, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(181, 155, 84, 0.1);
    border-color: var(--accent-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    font-size: 1.2rem;
}

.reviewer-info h4 {
    color: var(--white);
    margin-bottom: 2px;
}

.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .features {
        flex-direction: column;
        gap: 40px;
    }
}

/* New Arrivals */
.new-arrivals-section {
    padding: 80px 5%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.new-arrivals-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(181, 155, 84, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.new-arrivals-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Trust Badges */
.trust-badges-section {
    padding: 50px 5%;
    background-color: #111;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-badges-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.trust-badge {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    color: var(--white);
}

.trust-badge svg {
    margin-bottom: 15px;
}

.trust-badge h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-badge p {
    color: #999;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: var(--secondary-color);
    color: var(--text-main);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Floating Query Button */
.query-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
}

.query-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(181, 155, 84, 0.4);
    background-color: var(--white);
    color: var(--accent-color);
}

.query-button svg {
    fill: currentColor;
    width: 22px;
    height: 22px;
}

.admin-btn:hover{
    background:#333;
}

/* ==========================================================================
   CART DRAWER & OVERLAY SYSTEMS
   ========================================================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
    transition: opacity 0.3s;
}

.cart-overlay.show {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    color: #ffffff;
    border-left: 1px solid rgba(181, 155, 84, 0.2);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #b59b54;
    text-transform: uppercase;
}

.cart-drawer-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.cart-drawer-close:hover {
    color: #b59b54;
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty-message {
    text-align: center;
    color: #888888;
    padding: 40px 0;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}

.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    background: #111;
    border: 1px solid rgba(181, 155, 84, 0.2);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #eaeaea;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #999999;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #b59b54;
}

.cart-item-qty-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.cart-item-qty-btn {
    background: none;
    border: none;
    color: #ffffff;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.cart-item-qty-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #b59b54;
}

.cart-item-qty-val {
    width: 26px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #f87171;
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-gift-progress-box {
    padding: 16px;
    background: rgba(181, 155, 84, 0.08);
    border: 1px solid rgba(181, 155, 84, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
}

.cart-gift-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #b59b54;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 0.5px;
}

.cart-gift-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.cart-gift-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #a38945, #b59b54);
    width: 0%;
    transition: width 0.4s ease;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(15, 15, 15, 0.98);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.cart-summary-total {
    color: #b59b54;
    font-size: 1.2rem;
}

.cart-checkout-form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-checkout-form input,
.cart-checkout-form textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s;
}

.cart-checkout-form input:focus,
.cart-checkout-form textarea:focus {
    border-color: #b59b54;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px rgba(181,155,84,0.15);
}

.cart-checkout-btn {
    width: 100%;
    margin-top: 15px;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cart-checkout-btn:hover {
    background: #1ebd59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

/* Responsive Cart Drawer */
@media(max-width: 480px) {
    .cart-drawer {
        max-width: 100%;
        right: -100%;
    }
}

/* ===================== HERO SLIDER ===================== */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

/* (hero-slide styles are defined in the hero section above) */



/* Arrow Buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(181, 155, 84, 0.85);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-arrow:hover {
    background: rgba(181, 155, 84, 1);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev { left: 15px; }
.hero-arrow-next { right: 15px; }

/* Dots Navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
}

.hero-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

/* Hero buttons */
.hero-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===================== PAGE COMMON STYLES ===================== */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2410 100%);
    color: white;
    padding: 140px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(181,155,84,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .hero-slider, .hero-slide img { height: 380px; }
    .hero-arrow { width: 36px; height: 36px; font-size: 1.8rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .hero-btns { justify-content: center; }
    .hero-fullscreen-content .hero-title { font-size: 2.8rem; }
    .hero-fullscreen-content .hero-description { font-size: 1rem; }
    .hero-fullscreen-content { padding: 0 24px; }
}

/* ===================== QUICK INFO MODAL ===================== */
.quick-info-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.quick-info-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quick-info-modal {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid rgba(181, 155, 84, 0.4);
    border-radius: 20px;
    padding: 45px 40px 35px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(181,155,84,0.1);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-info-modal-overlay.active .quick-info-modal {
    transform: scale(1) translateY(0);
}

.quick-info-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.quick-info-close:hover {
    color: var(--accent-color);
}

.quick-info-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 16px;
    animation: sparkle 1.5s ease-in-out infinite alternate;
}

@keyframes sparkle {
    from { text-shadow: 0 0 6px rgba(181,155,84,0.5); }
    to   { text-shadow: 0 0 18px rgba(181,155,84,0.9); }
}

.quick-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.quick-info-desc {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 28px;
    min-height: 48px;
}

.quick-info-ok {
    background: linear-gradient(135deg, var(--accent-color), #c9ae6a);
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-info-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181,155,84,0.4);
}

/* Quick Info button style on product card overlay */
.quick-info-btn {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.6) !important;
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.quick-info-btn:hover {
    background: rgba(181, 155, 84, 0.9) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ==========================================================================
   NEW STORES, BADGES, REVIEWS & FOOTER SECTIONS
   ========================================================================== */

/* Styled Trust Badges Section */
.custom-trust-badges {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: 4px solid #8B1E22;
    border-radius: 4px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.custom-trust-badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
    padding: 10px 0;
}

.custom-trust-badge-item svg {
    width: 32px;
    height: 32px;
    stroke: #8B1E22;
    fill: none;
}

.custom-trust-badge-item span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
}

@media (min-width: 769px) {
    .custom-trust-badge-item:not(:last-child) {
        border-right: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .custom-trust-badges {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .custom-trust-badge-item {
        width: 100%;
    }
    .custom-trust-badge-item:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
}

/* Reviews Header Badges & Rating Summary */
.reviews-summary-container {
    text-align: center;
    max-width: 1200px;
    margin: 50px auto 30px;
    padding: 0 20px;
}

.reviews-rating-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.reviews-rating-header .green-stars {
    color: #0f766e; /* Teal-green color for stars */
}

.reviews-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.review-badge-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.review-badge-pill.gold {
    border-color: rgba(181, 155, 84, 0.4);
    background: rgba(181, 155, 84, 0.05);
}

.review-badge-pill svg {
    width: 16px;
    height: 16px;
}

/* Verified Reviews Cards Grid */
.custom-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

.custom-review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.custom-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.custom-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.custom-reviewer-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-reviewer-name .checkmark {
    color: #22c55e;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.custom-review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.custom-review-stars {
    color: #8B1E22; /* Maroon-red color for card stars */
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.custom-review-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.custom-review-product-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    background: #fff;
}

.custom-review-product-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Store Locations Section */
.store-locations-section {
    padding: 80px 5%;
    background: var(--white);
    color: var(--text-main);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.store-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.store-card {
    text-align: left;
    padding: 25px;
    background: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.store-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-card h4 svg {
    color: var(--accent-color);
    width: 18px;
    height: 18px;
}

.store-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Bulk Order Banner */
.bulk-promo-section {
    padding: 30px 5% 50px;
    background: var(--white);
}

.bulk-promo-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid #8B1E22;
    padding: 24px 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.bulk-promo-text {
    flex: 1;
    min-width: 280px;
}

.bulk-promo-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.bulk-promo-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.bulk-promo-btn {
    background: transparent;
    color: #8B1E22;
    border: 2px solid #8B1E22;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bulk-promo-btn:hover {
    background: #8B1E22;
    color: #fff;
    box-shadow: 0 5px 15px rgba(139, 30, 34, 0.2);
}

/* Redesigned Footer Columns */
footer {
    background-color: #0c0c0c;
    color: var(--white);
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer.navbar-transparent {
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4,
.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column a {
    display: block;
    color: #999999;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-newsletter {
    flex: 1.5;
    min-width: 300px;
}

.footer-newsletter p {
    color: #999999;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 5px;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 10px 0;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: #555;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    padding: 10px 15px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* ============================
   LOGIN BUTTON IN NAVBAR
   ============================ */
.login-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 7px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--accent-color);
    background: transparent;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.login-btn-wrapper:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(181, 155, 84, 0.35);
}

.login-btn-wrapper svg {
    flex-shrink: 0;
}

.login-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================
   AUTH MODAL OVERLAY
   ============================ */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================
   AUTH MODAL CARD
   ============================ */
.auth-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 36px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(181, 155, 84, 0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    animation: authModalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes authModalIn {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1);       opacity: 1; }
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.auth-modal-close:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

/* ============================
   BRAND HEADER
   ============================ */
.auth-brand {
    text-align: center;
    margin-bottom: 28px;
}

.auth-brand-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 6px;
    display: block;
}

.auth-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.auth-brand-tagline {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================
   AUTH TABS
   ============================ */
.auth-tabs {
    display: flex;
    background: var(--secondary-color);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 28px;
    border: 1px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 9px;
    border: none;
    background: none;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.auth-tab.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ============================
   AUTH FORMS
   ============================ */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.auth-input-group input {
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--secondary-color);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.auth-input-group input:focus {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(181, 155, 84, 0.12);
}

.auth-input-group input::placeholder {
    color: #bbb;
}

/* Password toggle wrap */
.auth-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-password-wrap input {
    padding-right: 44px;
}

.auth-eye-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    padding: 0;
    line-height: 1;
    transition: var(--transition);
}

.auth-eye-btn:hover {
    color: var(--accent-color);
}

/* Forgot password */
.auth-forgot {
    text-align: right;
    margin-top: -6px;
}

.auth-forgot a {
    font-size: 0.82rem;
    color: var(--accent-color);
    font-weight: 500;
}

.auth-forgot a:hover {
    text-decoration: underline;
}

/* Submit button */
.auth-submit-btn {
    padding: 13px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-color), #d4a843);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 155, 84, 0.4);
}

.auth-submit-btn:hover::after {
    opacity: 1;
}

.auth-submit-btn span {
    position: relative;
    z-index: 1;
}

/* Switch text */
.auth-switch-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.auth-switch-text a {
    color: var(--accent-color);
    font-weight: 600;
}

.auth-switch-text a:hover {
    text-decoration: underline;
}

/* ============================
   LOGGED-IN STATE
   ============================ */
.auth-loggedin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0 6px;
    text-align: center;
}

.auth-loggedin-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #d4a843);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(181, 155, 84, 0.4);
    margin-bottom: 8px;
    letter-spacing: 0;
}

.auth-loggedin h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================
   TOAST NOTIFICATION
   ============================ */
.auth-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1a1a1a;
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-left: 4px solid var(--accent-color);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.auth-toast.error {
    border-left-color: #e74c3c;
    background: #2a1010;
}

.auth-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================
   DARK MODE OVERRIDES
   ============================ */
body.dark-mode .auth-modal {
    background: #1e1e1e;
    border-color: rgba(181, 155, 84, 0.3);
}

body.dark-mode .auth-tabs {
    background: #111;
    border-color: #333;
}

body.dark-mode .auth-input-group input {
    background: #111;
    border-color: #333;
    color: #e0e0e0;
}

body.dark-mode .auth-input-group input:focus {
    background: #1a1a1a;
    border-color: var(--accent-color);
}

body.dark-mode .auth-modal-close:hover {
    background: #333;
}

body.dark-mode .login-btn-wrapper {
    color: var(--primary-color);
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 600px) {
    .auth-modal {
        padding: 32px 22px 28px;
        border-radius: 20px;
    }

    .login-label {
        display: none;
    }

    .login-btn-wrapper {
        padding: 7px 10px;
    }
}

/* ==========================================================================
   PRODUCT DETAIL VIEW MODAL (PREMIUM & RESPONSIVE)
   ========================================================================== */
.pd-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    transition: opacity 0.3s ease;
}

.pd-modal-overlay.active {
    display: flex;
}

.pd-modal {
    background: var(--white, #ffffff);
    color: var(--text-main, #111111);
    border: 1px solid var(--border-color, rgba(0,0,0,0.1));
    border-radius: 24px;
    width: 100%;
    max-width: 1050px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    max-height: 90vh;
    overflow-y: auto;
    animation: pdModalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pdModalSlideUp {
    from { transform: translateY(30px) scale(0.97); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

body.dark-mode .pd-modal {
    background: rgba(20, 20, 20, 0.95);
    color: #ffffff;
    border: 1px solid rgba(181, 155, 84, 0.3);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(181,155,84,0.15);
}

.pd-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-light, #666666);
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

body.dark-mode .pd-close-btn {
    color: #aaaaaa;
}

.pd-close-btn:hover {
    color: var(--accent-color, #b59b54) !important;
}

/* Left Column: Images */
.pd-images-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-main-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light, #f9f9f9);
    border: 1px solid var(--border-color, rgba(0,0,0,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.dark-mode .pd-main-img-wrap {
    background: #111111;
    border-color: rgba(255,255,255,0.05);
}

.pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pd-main-img:hover {
    transform: scale(1.03);
}

.pd-thumb-row {
    display: flex;
    gap: 12px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    background: var(--bg-light, #f9f9f9);
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

body.dark-mode .pd-thumb {
    background: #111111;
}

.pd-thumb.active {
    border-color: var(--accent-color, #b59b54);
    transform: translateY(-2px);
}

/* Right Column: Details */
.pd-details-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Badges Tags */
.pd-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 12px;
    background: rgba(181, 155, 84, 0.1);
    color: var(--accent-color, #b59b54);
    border: 1px solid rgba(181, 155, 84, 0.2);
    border-radius: 6px;
}

.pd-product-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: var(--text-main, #111111);
    margin: 0;
}

body.dark-mode .pd-product-title {
    color: #ffffff;
}

/* Rating */
.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-stars {
    color: #ffb800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pd-review-count {
    font-size: 0.9rem;
    color: var(--text-light, #666666);
    font-weight: 600;
}

body.dark-mode .pd-review-count {
    color: #aaaaaa;
}

/* 2x2 Feature Grid */
.pd-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pd-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-light, #f9f9f9);
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    border-radius: 14px;
}

body.dark-mode .pd-feature-card {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.05);
}

.pd-feature-icon {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-color, #b59b54);
    background: rgba(181, 155, 84, 0.12);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: monospace;
}

.pd-feature-text {
    display: flex;
    flex-direction: column;
}

.pd-feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-feature-title {
    color: #ffffff;
}

.pd-feature-desc {
    font-size: 0.78rem;
    color: var(--text-light, #666666);
    margin-top: 2px;
}

body.dark-mode .pd-feature-desc {
    color: #aaaaaa;
}

/* Price */
.pd-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.08));
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.08));
    padding: 16px 0;
}

body.dark-mode .pd-price-wrap {
    border-color: rgba(255,255,255,0.08);
}

.pd-price-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-price-main {
    color: #ffffff;
}

.pd-price-old {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--text-light, #999999);
}

/* Size buttons */
.pd-sizes-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-sizes-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pd-sizes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-size-pill {
    background: transparent;
    color: var(--text-main, #111111);
    border: 1px solid var(--border-color, rgba(0,0,0,0.15));
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

body.dark-mode .pd-size-pill {
    color: #eaeaea;
    border-color: rgba(255,255,255,0.15);
}

.pd-size-pill:hover {
    border-color: var(--accent-color, #b59b54);
}

.pd-size-pill.active {
    background: var(--text-main, #111111);
    color: var(--white, #ffffff) !important;
    border-color: var(--text-main, #111111);
}

body.dark-mode .pd-size-pill.active {
    background: var(--accent-color, #b59b54);
    color: #000000 !important;
    border-color: var(--accent-color, #b59b54);
}

/* Qty and Add to Cart */
.pd-action-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.pd-qty-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color, rgba(0,0,0,0.15));
    border-radius: 8px;
    overflow: hidden;
    height: 54px;
    background: var(--bg-light, #f9f9f9);
}

body.dark-mode .pd-qty-container {
    border-color: rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
}

.pd-qty-btn {
    background: none;
    border: none;
    color: var(--text-main, #111111);
    width: 44px;
    height: 100%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

body.dark-mode .pd-qty-btn {
    color: #ffffff;
}

.pd-qty-btn:hover {
    background: rgba(0,0,0,0.05);
}

body.dark-mode .pd-qty-btn:hover {
    background: rgba(255,255,255,0.1);
}

.pd-qty-val {
    width: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-qty-val {
    color: #ffffff;
}

.pd-add-to-cart-btn {
    flex-grow: 1;
    background: #8b1e1e; /* Luxury Deep Red like screen */
    color: #ffffff;
    border: none;
    height: 54px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139,30,30,0.2);
}

.pd-add-to-cart-btn:hover {
    background: #a32424;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,30,30,0.35);
}

/* Social proof */
.pd-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #059669; /* Green success */
}

/* Accordions */
.pd-accordions-container {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.08));
    padding-top: 8px;
}

body.dark-mode .pd-accordions-container {
    border-color: rgba(255,255,255,0.08);
}

.pd-accordion-item {
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.08));
}

body.dark-mode .pd-accordion-item {
    border-color: rgba(255,255,255,0.08);
}

.pd-accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-main, #111111);
    cursor: pointer;
    outline: none;
}

body.dark-mode .pd-accordion-header {
    color: #ffffff;
}

.pd-accordion-header::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-color, #b59b54);
    transition: transform 0.3s ease;
}

.pd-accordion-item.active .pd-accordion-header::after {
    content: '-';
}

.pd-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light, #555555);
}

body.dark-mode .pd-accordion-content {
    color: #cccccc;
}

.pd-accordion-item.active .pd-accordion-content {
    padding-bottom: 16px;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .pd-modal {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .pd-modal {
        padding: 24px;
        border-radius: 16px;
    }
    
    .pd-product-title {
        font-size: 1.6rem;
    }
    
    .pd-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .pd-action-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pd-qty-container {
        justify-content: center;
    }
}

/* Offers Box inside Modal */
.pd-offers-box {
    border: 1px dashed #8b1e1e;
    padding: 16px;
    border-radius: 12px;
    background: rgba(139, 30, 30, 0.03);
    margin-top: 10px;
}

body.dark-mode .pd-offers-box {
    border-color: rgba(181, 155, 84, 0.5);
    background: rgba(181, 155, 84, 0.03);
}

.pd-offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pd-offers-badge {
    font-size: 0.72rem;
    font-weight: 800;
    background: #8b1e1e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.dark-mode .pd-offers-badge {
    background: var(--accent-color, #b59b54);
    color: #000000;
}

.pd-offers-title-right {
    font-size: 0.8rem;
    color: var(--text-light, #666666);
    font-weight: 600;
}

body.dark-mode .pd-offers-title-right {
    color: #aaaaaa;
}

.pd-offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pd-offer-card {
    border: 1px solid var(--border-color, rgba(0,0,0,0.08));
    padding: 12px;
    border-radius: 8px;
    background: var(--white, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.dark-mode .pd-offer-card {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.pd-offer-tag-top {
    font-size: 0.7rem;
    font-weight: 700;
    color: #8b1e1e;
    text-transform: uppercase;
}

body.dark-mode .pd-offer-tag-top {
    color: var(--accent-color, #b59b54);
}

.pd-offer-heading {
    font-size: 0.88rem;
    font-weight: 800;
    margin: 4px 0 2px;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-offer-heading {
    color: #ffffff;
}

.pd-offer-desc {
    font-size: 0.75rem;
    color: var(--text-light, #666666);
    margin: 0;
}

body.dark-mode .pd-offer-desc {
    color: #aaaaaa;
}

.pd-offer-save-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.05));
    padding-top: 6px;
}

body.dark-mode .pd-offer-save-row {
    border-color: rgba(255,255,255,0.05);
}

.pd-offer-save-label {
    font-size: 0.7rem;
    color: var(--text-light, #666666);
    font-weight: 600;
}

body.dark-mode .pd-offer-save-label {
    color: #aaaaaa;
}

.pd-offer-save-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: #8b1e1e;
}

body.dark-mode .pd-offer-save-value {
    color: var(--accent-color, #b59b54);
}

.pd-offers-footer {
    font-size: 0.72rem;
    color: var(--text-light, #666666);
    margin: 10px 0 0;
    font-style: italic;
}

body.dark-mode .pd-offers-footer {
    color: #aaaaaa;
}

/* Standalone Product Details Page Layout */
.pd-page-view {
    max-width: 1200px;
    margin: 120px auto 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    padding: 0 5%;
}

@media (max-width: 900px) {
    .pd-page-view {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 100px;
        margin-bottom: 40px;
    }
}

/* Standalone Page Extended Sections */
.pd-extension-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.pd-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color, #b59b54);
    padding-bottom: 12px;
    display: inline-block;
}

/* Reviews Section Styles */
.pd-reviews-summary-wrapper {
    background: rgba(181, 155, 84, 0.04);
    border: 1px solid rgba(181, 155, 84, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

body.dark-mode .pd-reviews-summary-wrapper {
    background: rgba(255,255,255,0.01);
    border-color: rgba(255,255,255,0.05);
}

.pd-reviews-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.pd-reviews-summary-stars-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-reviews-summary-stars-badge h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.pd-reviews-ai-box {
    background: var(--white, #ffffff);
    border: 1px solid var(--border-color, rgba(0,0,0,0.08));
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

body.dark-mode .pd-reviews-ai-box {
    background: rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.05);
}

.pd-reviews-ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-reviews-ai-header {
    color: #ffffff;
}

.pd-reviews-ai-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light, #555555);
}

body.dark-mode .pd-reviews-ai-content {
    color: #cccccc;
}

.pd-reviews-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-review-highlight-item {
    font-size: 0.88rem;
    color: var(--text-light, #666666);
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .pd-review-highlight-item {
    color: #aaaaaa;
}

.pd-review-highlight-item::before {
    content: "✦";
    color: var(--accent-color, #b59b54);
    font-weight: bold;
}

.pd-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-individual-review-card {
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.08));
    padding-bottom: 20px;
}

body.dark-mode .pd-individual-review-card {
    border-color: rgba(255,255,255,0.08);
}

.pd-review-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.pd-review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color, #b59b54);
    color: #000000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pd-review-username {
    font-weight: 700;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-review-username {
    color: #ffffff;
}

.pd-review-verified {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.pd-review-date {
    font-size: 0.8rem;
    color: var(--text-light, #888888);
}

.pd-review-text-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 8px 0 4px;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-review-text-title {
    color: #ffffff;
}

.pd-review-text-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light, #555555);
}

body.dark-mode .pd-review-text-content {
    color: #cccccc;
}

/* FAQ Extended Styles */
.pd-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.pd-faq-item {
    border: 1px solid var(--border-color, rgba(0,0,0,0.08));
    border-radius: 12px;
    background: var(--bg-light, #f9f9f9);
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark-mode .pd-faq-item {
    border-color: rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.pd-faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    color: var(--text-main, #111111);
    cursor: pointer;
    outline: none;
}

body.dark-mode .pd-faq-header {
    color: #ffffff;
}

.pd-faq-header::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--accent-color, #b59b54);
    font-weight: bold;
    transition: transform 0.3s;
}

.pd-faq-item.active .pd-faq-header::after {
    content: "-";
}

.pd-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light, #555555);
    padding: 0 24px;
}

body.dark-mode .pd-faq-content {
    color: #cccccc;
}

.pd-faq-item.active .pd-faq-content {
    padding-bottom: 20px;
}

/* Trust Badges Grid */
.pd-trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.08));
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.08));
    padding: 40px 0;
}

body.dark-mode .pd-trust-badges-grid {
    border-color: rgba(255,255,255,0.08);
}

.pd-trust-badge-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pd-trust-badge-icon {
    font-size: 1.8rem;
    color: var(--accent-color, #b59b54);
    width: 60px;
    height: 60px;
    background: rgba(181, 155, 84, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-trust-badge-title {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-main, #111111);
}

body.dark-mode .pd-trust-badge-title {
    color: #ffffff;
}

.pd-trust-badge-desc {
    font-size: 0.82rem;
    color: var(--text-light, #666666);
    line-height: 1.5;
    margin: 0;
}

body.dark-mode .pd-trust-badge-desc {
    color: #aaaaaa;
}

/* Store Locations */
.pd-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.pd-location-card {
    border: 1px solid var(--border-color, rgba(0,0,0,0.08));
    border-radius: 12px;
    padding: 24px;
    background: var(--bg-light, #f9f9f9);
}

body.dark-mode .pd-location-card {
    border-color: rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.01);
}

.pd-location-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main, #111111);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .pd-location-title {
    color: #ffffff;
}

.pd-location-title::before {
    content: "📍";
}

.pd-location-desc {
    font-size: 0.88rem;
    color: var(--text-light, #666666);
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .pd-location-desc {
    color: #aaaaaa;
}

/* Bulk Order Banner */
.pd-bulk-banner {
    background: linear-gradient(135deg, #8b1e1e 0%, #4a1010 100%);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    color: #ffffff;
    margin-bottom: 60px;
}

body.dark-mode .pd-bulk-banner {
    background: linear-gradient(135deg, #1f1a0e 0%, #151109 100%);
    border: 1px solid rgba(181, 155, 84, 0.3);
}

.pd-bulk-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.pd-bulk-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.pd-bulk-btn {
    background: #ffffff;
    color: #8b1e1e;
    font-weight: 700;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

body.dark-mode .pd-bulk-btn {
    background: var(--accent-color, #b59b54);
    color: #000000;
}

.pd-bulk-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Bulk Popup overlay */
.pd-bulk-popup {
    display: none;
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

/* Newsletter Box */
.pd-newsletter-section {
    text-align: center;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.08));
    padding-top: 60px;
    margin-bottom: 20px;
}

body.dark-mode .pd-newsletter-section {
    border-color: rgba(255,255,255,0.08);
}

.pd-newsletter-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color, #b59b54);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pd-newsletter-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-main, #111111);
    margin: 10px 0 16px;
}

body.dark-mode .pd-newsletter-title {
    color: #ffffff;
}

.pd-newsletter-desc {
    font-size: 0.92rem;
    color: var(--text-light, #666666);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

body.dark-mode .pd-newsletter-desc {
    color: #aaaaaa;
}

.pd-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    position: relative;
}

.pd-newsletter-input {
    flex-grow: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.15));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    background: transparent;
    color: var(--text-main, #111111);
    transition: all 0.3s;
}

body.dark-mode .pd-newsletter-input {
    border-color: rgba(255,255,255,0.15);
    color: #ffffff;
}

.pd-newsletter-input:focus {
    border-color: var(--accent-color, #b59b54);
}

.pd-newsletter-btn {
    background: var(--text-main, #111111);
    color: var(--white, #ffffff);
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

body.dark-mode .pd-newsletter-btn {
    background: var(--accent-color, #b59b54);
    color: #000000;
}

.pd-newsletter-btn:hover {
    opacity: 0.9;
}

@media(max-width: 600px) {
    .pd-newsletter-form {
        flex-direction: column;
    }
    .pd-newsletter-btn {
        height: 50px;
    }
    .pd-bulk-banner {
        padding: 24px;
        text-align: center;
        justify-content: center;
    }
}

/* --- Announcement Bar & Header Wrapper --- */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.announcement-bar {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 34px;
    box-sizing: border-box;
}

/* Ensure the navbar under wrapper is relative instead of fixed to prevent double overlapping */
.header-wrapper .navbar {
    position: relative;
    top: 0;
    box-shadow: none;
    background-color: var(--navbar-bg);
}

/* Adjust page content top offset when announcement bar wrapper is used */
.header-wrapper + main .hero {
    padding-top: 114px; /* 80px default navbar offset + 34px announcement bar */
}

@media (max-width: 900px) {
    .header-wrapper + main .hero {
        padding-top: 154px; /* 120px mobile navbar offset + 34px announcement bar */
    }
}

.announcement-bar {
    position: relative;
    overflow: hidden;
}

.announcement-slide {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.announcement-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
