/* ============================================
   Dii Nesavu - Custom Styles
   Brand Colors:
   - Primary: #000000 (black)
   - Accent 1: #FF2F7D (pink)
   - Accent 2: #FF6A3C (orange)
   - Background: #FFF7F5 or #FFFFFF
============================================ */

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

/* Root Variables */
:root {
    --primary-black: #000000;
    --accent-pink: #FF2F7D;
    --accent-orange: #FF6A3C;
    --bg-cream: #FFF7F5;
    --bg-white: #FFFFFF;
    --text-gray: #666666;
    --text-light: #999999;
    --gradient-accent: linear-gradient(135deg, #FF2F7D 0%, #FF6A3C 100%);
}

/* Base Styles */
html {
    scroll-padding-top: 80px; /* Account for sticky navbar height */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: #333;
    line-height: 1.6;
}

/* Ensure main content doesn't get hidden behind sticky navbar */
main {
    padding-top: 10px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 70px; /* Smaller navbar on mobile */
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.announcement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.announcement-text {
    color: rgba(255, 255, 255, 0.9);
}

.announcement-text strong {
    color: var(--accent-pink);
    font-weight: 600;
}

.announcement-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

@media (max-width: 767px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }

    .announcement-divider,
    .announcement-content > .announcement-text:last-child {
        display: none;
    }
}

/* ============================================
   MODERN NAVBAR STYLES
============================================ */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

/* Logo and Brand */
.navbar-logo {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-left: 10px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 10px;
    letter-spacing: 0.3px;
    font-style: italic;
    opacity: 0.85;
}

/* Nav Links Modern Style */
.nav-pills-modern {
    gap: 5px;
}

.nav-pills-modern .nav-link {
    color: var(--primary-black);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-pills-modern .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-pills-modern .nav-link:hover {
    color: var(--accent-pink);
    background: rgba(255, 47, 125, 0.05);
}

.nav-pills-modern .nav-link:hover::before {
    width: 60%;
}

.nav-pills-modern .nav-link.active {
    color: white;
    background: var(--gradient-accent);
    box-shadow: 0 4px 15px rgba(255, 47, 125, 0.3);
}

.nav-pills-modern .nav-link.active::before {
    display: none;
}

.nav-text {
    position: relative;
    z-index: 1;
}

/* Nav Icon Buttons */
.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--primary-black);
    background: rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-icon-btn:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 47, 125, 0.3);
}

.cart-badge-modern {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gradient-accent);
    color: white;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 47, 125, 0.4);
}

/* Currency Selector */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.03);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-selector:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary-black);
}

.currency-selector i {
    color: var(--accent-pink);
    font-size: 0.9rem;
}

/* Category Dropdown */
.category-dropdown .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top-width: 5px;
    border-right-width: 5px;
    border-left-width: 5px;
    transition: transform 0.3s ease;
}

.category-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.category-dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 200px;
    margin-top: 10px;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--primary-black);
    transition: all 0.2s ease;
}

.category-dropdown-menu .dropdown-item:hover {
    background: rgba(255, 47, 125, 0.08);
    color: var(--accent-pink);
    padding-left: 25px;
}

.category-dropdown-menu .dropdown-item.active {
    background: var(--gradient-accent);
    color: white;
}

/* Hover to open dropdown on desktop */
@media (min-width: 992px) {
    .category-dropdown:hover .dropdown-menu {
        display: block;
    }

    .category-dropdown .dropdown-toggle {
        pointer-events: auto;
    }
}

/* Modern Mobile Toggle */
.modern-toggler {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.toggler-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .modern-navbar {
        padding: 10px 0;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-pills-modern {
        flex-direction: column;
        gap: 5px;
    }

    .nav-pills-modern .nav-link {
        padding: 14px 20px;
        border-radius: 12px;
        text-align: center;
    }

    .nav-pills-modern .nav-link::before {
        display: none;
    }

    .nav-pills-modern .nav-link:hover {
        background: rgba(255, 47, 125, 0.08);
    }
}

/* Legacy styles (keeping for backward compatibility) */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-icon {
    font-size: 1.2rem;
    position: relative;
    color: var(--primary-black);
}

.nav-icon:hover {
    color: var(--accent-pink);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-pink);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
}

.currency-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.section-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-padding {
    padding: 5rem 0;
}

/* Rounded Sections */
.rounded-section {
    border-radius: 20px;
    overflow: hidden;
}

/* Card Styles */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
}

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

.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card .card-img-top {
    transition: transform 0.5s ease;
    height: 320px;
    object-fit: cover;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-pink);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

/* Add to Cart Button on Product Cards */
.btn-card-cart {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-card-cart i {
    font-size: 1.1rem;
    color: var(--primary-black);
    transition: color 0.2s;
}

.product-card:hover .btn-card-cart {
    opacity: 1;
    transform: translateY(0);
}

.btn-card-cart:hover {
    background: var(--accent-pink);
    transform: scale(1.1);
}

.btn-card-cart:hover i {
    color: white;
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

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

.price-mrp {
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

.price-sale {
    font-weight: 700;
    color: var(--primary-black);
}

.price-discount {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Button Styles */
.btn-primary-custom {
    background: var(--primary-black);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 47, 125, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-black);
    color: white;
}

.btn-quick-view {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-gray);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: white;
}

.btn-add-cart {
    background: var(--primary-black);
    border: 1px solid var(--primary-black);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .btn-quick-view,
    .btn-add-cart {
        padding: 9px 14px;
        font-size: 0.78rem;
    }
    .product-card .card-body > .d-flex {
        flex-direction: column;
        gap: 0.4rem !important;
    }
    .product-card .card-body > .d-flex .btn-quick-view,
    .product-card .card-body > .d-flex .btn-add-cart {
        width: 100%;
    }
}

.btn-add-cart:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: white;
}

.btn-add-cart:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* Hero Carousel Styles */
.hero-carousel .carousel-item {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-carousel,
    .hero-carousel #heroCarousel {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .hero-carousel .carousel-inner {
        position: relative;
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .hero-carousel .carousel-item {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 0;
        max-height: none;
        margin: 0;
    }
    .hero-carousel .carousel-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block;
    }
    .hero-carousel + section.section-padding {
        padding-top: 2rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 700px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-pink);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

.carousel-indicators button.active {
    background-color: var(--accent-pink);
}

/* Brand Story Section */
.brand-story {
    background-color: #FDF8F5;
    border-radius: 20px;
}

.brand-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-black);
}

.brand-story p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.brand-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Filter Sidebar */
.filter-sidebar {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

/* Category List Sidebar */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-link:hover {
    background: rgba(255, 47, 125, 0.08);
    color: var(--accent-pink);
    padding-left: 20px;
}

.category-link.active {
    background: var(--gradient-accent);
    color: white;
}

.category-link.active:hover {
    padding-left: 16px;
    color: white;
}

.category-link i {
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.2s ease;
}

.category-link:hover i,
.category-link.active i {
    opacity: 1;
}

/* Mobile Category List */
.category-list-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-link-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.category-link-mobile:hover {
    background: rgba(255, 47, 125, 0.05);
    color: var(--accent-pink);
}

.category-link-mobile.active {
    background: var(--gradient-accent);
    color: white;
    border-bottom-color: transparent;
}

.category-link-mobile i {
    font-size: 0.8rem;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-black);
    background: transparent;
    padding: 1rem 0;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-pink);
    background: transparent;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 0.5rem 0 1rem;
}

.form-check-input:checked {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
}

/* Shop Banner */
.shop-banner {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-orange) 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.shop-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

/* Sort Dropdown */
.sort-dropdown .btn {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-detail-image img {
    width: 100%;
    height: auto;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.product-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--accent-pink);
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.stock-status i {
    font-size: 0.7rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: var(--bg-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:first-child {
    border-radius: 50px 0 0 50px;
}

.quantity-selector button:last-child {
    border-radius: 0 50px 50px 0;
}

.quantity-selector button:hover {
    background: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-selector input:focus {
    outline: none;
}

/* Checkout Page */
.checkout-form {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-form label {
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.checkout-form .form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.checkout-form .form-control:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 47, 125, 0.1);
}

.order-summary {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Make order summary sticky on desktop for better scrolling experience */
@media (min-width: 992px) {
    .order-summary {
        position: sticky;
        top: 90px; /* Account for sticky navbar */
    }
}

/* Scroll margin for checkout form elements to prevent hiding behind navbar */
.checkout-form .form-control,
.checkout-form .form-select,
.checkout-form textarea {
    scroll-margin-top: 100px;
}

.order-summary h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Checkout page mobile scroll fixes */
@media (max-width: 991px) {
    .checkout-form {
        margin-bottom: 1.5rem;
    }

    /* Ensure proper padding at top for mobile checkout */
    .container.py-5 {
        padding-top: 2rem !important;
    }
}

@media (max-width: 767px) {
    .checkout-form {
        padding: 1.5rem;
    }

    .order-summary {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Add extra bottom padding on mobile to prevent content from being cut off */
    .checkout-form:last-child,
    .order-summary:last-child {
        margin-bottom: 2rem;
    }
}

/* Order Success Page */
.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.order-details-box {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Track Order Page */
.track-order-form {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
}

.order-progress {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 3rem 0;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-steps .progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    background: var(--gradient-accent);
    z-index: 1;
    transition: width 0.5s ease;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.2rem;
    color: #999;
}

.step.active .step-icon,
.step.completed .step-icon {
    background: var(--gradient-accent);
}

.step.active .step-icon i,
.step.completed .step-icon i {
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 100px;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--primary-black);
    font-weight: 600;
}

/* ============================================
   5-STEP PROGRESS STEPPER
============================================ */
.progress-steps-5 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 3rem 0;
}

.progress-steps-5::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-steps-5 .progress-line {
    position: absolute;
    top: 25px;
    left: 10%;
    height: 4px;
    background: var(--gradient-accent);
    z-index: 1;
    transition: width 0.5s ease;
    max-width: 80%;
}

.progress-steps-5 .step {
    flex: 1;
    max-width: 20%;
}

.progress-steps-5 .step-label {
    font-size: 0.75rem;
    max-width: 90px;
}

/* Cancelled Order State */
.order-cancelled-box {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Mobile responsive for 5 steps */
@media (max-width: 767px) {
    .progress-steps-5 {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-steps-5::before {
        display: none;
    }

    .progress-steps-5 .progress-line {
        display: none;
    }

    .progress-steps-5 .step {
        flex-direction: row;
        gap: 1rem;
        max-width: 100%;
    }

    .progress-steps-5 .step-label {
        text-align: left;
        max-width: none;
    }

    .progress-steps-5 .step-icon {
        margin-bottom: 0;
    }
}

/* Footer Styles */
.footer {
    background: var(--primary-black);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%),
                url("../images/banner1.0f7f7af8746a.jpg");
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: white;
    border-radius: 0 0 30px 30px;
}

/* Fade Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

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

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }
.fade-up:nth-child(7) { animation-delay: 0.7s; }
.fade-up:nth-child(8) { animation-delay: 0.8s; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .brand-story h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .product-card .card-img-top {
        height: 250px;
    }

    .progress-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .progress-steps::before {
        display: none;
    }

    .step {
        flex-direction: row;
        gap: 1rem;
    }

    .step-label {
        text-align: left;
        max-width: none;
    }
}

/* ============================================
   ENHANCED PRODUCT CARDS
============================================ */

/* Card hover improvements */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
    height: 100%;
}

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

.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card .card-img-top {
    transition: transform 0.4s ease;
    height: 320px;
    object-fit: cover;
    width: 100%;
}

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

/* Product name truncation */
.product-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
    line-height: 1.3;
}

/* Enhanced badge styling */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 47, 125, 0.3);
}

/* ============================================
   SKELETON LOADING
============================================ */

.skeleton-wrapper {
    position: relative;
    background: #e8e8e8;
    overflow: hidden;
}

.skeleton-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Skeleton for product card image */
.card-img-wrapper .skeleton-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    z-index: 1;
    overflow: hidden;
}

.card-img-wrapper .skeleton-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

/* Hide skeleton when image is loaded */
.card-img-wrapper.loaded .skeleton-box {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card-img-wrapper .card-img-top {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-wrapper.loaded .card-img-top {
    opacity: 1;
}

/* ============================================
   PRODUCT DETAIL PAGE ENHANCEMENTS
============================================ */

/* Main image container */
.product-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    background: var(--bg-white);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.product-detail-image:hover img {
    transform: scale(1.03);
}

/* Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.product-thumbnails img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.product-thumbnails img.active {
    border-color: var(--accent-pink);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(255, 47, 125, 0.25);
}

/* Product info section */
.product-detail-info {
    padding-left: 1rem;
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--primary-black);
}

.product-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.product-detail-price .original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 400;
}

/* Stock status badge */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.stock-status.in-stock {
    background: #E8F5E9;
    color: #2E7D32;
}

.stock-status.out-of-stock {
    background: #FFEBEE;
    color: #C62828;
}

.stock-status i {
    font-size: 0.6rem;
}

/* Description text */
.product-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Product details list */
.product-details-list {
    margin-bottom: 1.5rem;
}

.product-details-list h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.product-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.product-details-list li i {
    color: var(--accent-pink);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* Enhanced Order Now button */
.btn-order-now {
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(255, 47, 125, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-order-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 47, 125, 0.45);
    color: white;
}

.btn-order-now:active {
    transform: translateY(-1px);
}

.btn-order-now.disabled,
.btn-order-now:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive button */
@media (max-width: 767px) {
    .btn-order-now {
        width: 100%;
    }

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

    .product-detail-info h1 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .btn-order-now {
        min-width: 280px;
    }
}

/* Trust badges enhancement */
.trust-badges {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.trust-badge-item {
    text-align: center;
    padding: 0.5rem;
}

.trust-badge-item i {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.trust-badge-item:hover i {
    color: var(--accent-pink);
}

.trust-badge-item small {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* ============================================
   SCROLL ANIMATIONS (Custom fallback)
============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE PRODUCT GRID
============================================ */

/* Mobile: 2 per row */
@media (max-width: 575px) {
    .product-card .card-img-top {
        height: 200px;
    }

    .product-card .card-img-wrapper {
        min-height: 200px;
        background: #f7f3ec;
    }

    .product-card .card-body {
        padding: 0.85rem 0.75rem;
    }

    .product-card .product-name {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }

    .product-card .product-price {
        margin-bottom: 0.65rem !important;
    }

    .product-name {
        font-size: 0.9rem;
        min-height: 2.4em;
    }

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

    .product-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: 8px;
        left: 8px;
    }
}

/* Tablet: 3 per row */
@media (min-width: 576px) and (max-width: 991px) {
    .product-card .card-img-top {
        height: 280px;
    }
}

/* Desktop: 3-4 per row */
@media (min-width: 992px) {
    .product-card .card-img-top {
        height: 320px;
    }
}

/* ============================================
   Utility Classes
============================================ */
.text-accent-pink {
    color: var(--accent-pink);
}

.text-accent-orange {
    color: var(--accent-orange);
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* ============================================
   CUSTOMER IMAGES SECTION
============================================ */

.customer-images-wrapper {
    overflow: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.customer-images-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-animation: scrollLeft 30s linear infinite;
    animation: scrollLeft 30s linear infinite;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.customer-images-grid:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes scrollLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.customer-image-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 250px;
    height: 350px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-image-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.customer-image-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

.customer-image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.customer-info {
    text-align: right;
    color: white;
}

.customer-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.customer-location {
    display: block;
    font-size: 0.65rem;
    opacity: 0.85;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .customer-image-item {
        width: 200px;
        height: 280px;
    }

    .customer-name {
        font-size: 0.75rem;
    }

    .customer-location {
        font-size: 0.6rem;
    }

    .customer-images-grid {
        -webkit-animation-duration: 20s;
        animation-duration: 20s;
    }
}

/* ============================================
   CUSTOMER REVIEWS SECTION
============================================ */

.reviews-section {
    background: var(--bg-cream);
}

.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 auto;
    width: 320px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-black);
}

.reviewer-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars i {
    color: #FFB800;
    font-size: 0.9rem;
    margin-right: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Buttons */
.review-nav-btn {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav-btn:hover {
    background: var(--accent-pink);
    color: white;
    transform: scale(1.1);
}

.review-nav-btn i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 767px) {
    .review-card {
        width: 280px;
        padding: 20px;
    }

    .review-nav-btn {
        width: 38px;
        height: 38px;
    }

    .review-nav-btn i {
        font-size: 1rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   PRE-ORDER STYLES
============================================ */

/* Pre-order badge for product listing */
.preorder-badge {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4) !important;
}

/* Pre-order delivery hint on product cards */
.preorder-delivery-hint {
    background: #fff8e1;
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
}

.preorder-delivery-hint small {
    color: #f57c00;
    font-weight: 500;
    font-size: 0.75rem;
}

.preorder-delivery-hint i {
    margin-right: 4px;
}

/* Pre-order button style on product cards */
.btn-preorder-cart {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
    border-color: #f57c00 !important;
}

.btn-preorder-cart:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%) !important;
    border-color: #e65100 !important;
}
