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

:root {
    --primary-color: #bd8336;
    /* User requested primary color */
    --secondary-color: #e0ac1c;
    /* Adjusted Gold accent */
    --dark-bg: #0f0f12;
    --light-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(189, 131, 54, 0.2);
    --text-main: #000000;
    --text-muted: #333333;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --cream-bg: #fffbf2;
    /* Match the cream background in the image */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #FFFBF2;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Global Override */
.navbar {
    padding: 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 4px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #966628;
    box-shadow: 0 4px 15px rgba(189, 131, 54, 0.4);
    transform: translateY(-2px);
}

/* --- HEADER STYLES --- */

/* Header Top (Logo, Search, Icons) */
.header-top {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Search Container */
.search-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.search-input {
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 25px;
    width: 100%;
    background: #f8f9fa;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.search-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(189, 131, 54, 0.1);
}

/* Header Icons (Wishlist/Cart) */
.icon-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.3rem;
    /* Slightly larger */
    transition: color 0.3s;
    position: relative;
    margin-left: 20px;
}

.icon-link:hover {
    color: var(--primary-color);
}

.icon-link .badge {
    background-color: var(--primary-color) !important;
}

/* Header Bottom (Nav, Login) - Primary Color Background */
.header-bottom {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-bottom .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    padding: 15px 12px !important;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-bottom .nav-link:hover,
.header-bottom .nav-link.active {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.15);
    /* Subtle darken on hover */
}

/* Divider between icons */
.auth-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin: 0 10px;
}

.auth-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.auth-link:hover {
    color: #fff;
}

/* --- END HEADER STYLES --- */

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(94, 23, 235, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 212, 255, 0.05), transparent 40%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Footer */
footer {
    background: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hero Full Width */
.hero-full img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    /* Prevent overly tall images on large screens */
    object-fit: cover;
}

/* Rounded Categories */
.category-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 20px;
    /* Rounded squares as in image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: #fff;
    padding: 8px;
    /* Slightly more padding for the inner border effect */
    background-clip: content-box;
    /* Ensures padding shows as the border gap */
    box-shadow: 0 0 0 5px #e8e0cc, 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Creamy border + shadow */
}

.category-item:hover .category-thumb {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 5px #d4af37, 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
    margin-top: 15px;
}

.category-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Custom Grid for 8 items */
.custom-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Mobile: 4 items helps readability, or user might want 2 */
    gap: 15px;
}

@media (min-width: 768px) {
    .custom-category-grid {
        grid-template-columns: repeat(8, 1fr);
        /* Force 8 items on Tablet/Desktop */
    }
}

/* Filter Sort Buttons */
.filter-sort-btn {
    border: 1px solid #7a2b49;
    /* Burgundy border */
    background: #fff;
    color: #000;
    padding: 8px 50px;
    /* Wider buttons */
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 10px;
    text-transform: lowercase;
    /* Matches image "filter", "sort" */
    min-width: 150px;
}

.filter-sort-btn i {
    color: #7a2b49;
    /* Icon color */
    font-size: 1.2rem;
}

.filter-sort-btn:hover {
    background: #fffdf8;
    border-color: var(--primary-color);
}

/* Flash Sale Banner */
.flash-sale-banner {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    border: 2px dashed #ffc107;
    /* Gold dashed border styled */
    margin: 30px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Cream Background Utility */
.bg-cream {
    background-color: var(--cream-bg);
}

/* Styled Section Divider */
.section-divider {
    border: 0;
    height: 1px;
    background: #000;
    /* Solid Black */
    opacity: 0.1;
    /* Subtle black line */
    margin-top: 40px;
    margin-bottom: 0;
}

/* Section Header with Countdown */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.offer-timer {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Product Card - Home Style */
.product-card-home {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s;
    position: relative;
    height: 100%;
}

.product-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pc-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f4f4f4;
}

.pc-img-wrapper img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
}

.pc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pc-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

.pc-price {
    font-weight: 700;
    color: #333;
    margin-top: 5px;
}

.pc-delivery {
    font-size: 0.8rem;
    color: #28a745;
    /* Green */
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}

/* Exclusive Offer Black Banner */
.exclusive-banner {
    background-color: #222;
    /* Dark Grey/Black */
    color: #fff;
    padding: 60px 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
}

.exclusive-banner h4 {
    font-size: 1.5rem;
    /* Save Big on... */
    font-weight: 700;
    margin-bottom: 5px;
}

.exclusive-banner h2 {
    font-size: 2.5rem;
    /* Exclusive Wedding Card Offer */
    font-weight: 800;
    margin: 0;
}

.text-orange {
    color: #ff6b00;
    /* Orange accent from image */
}

.btn-shop-now {
    background-color: #fff;
    color: #333;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-shop-now:hover {
    background-color: #f0f0f0;
    color: #000;
    transform: translateY(-2px);
}

/* Blog Section */
.blog-card-home {
    border: none;
    background: transparent;
}

.blog-card-home img {
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Newsletter Bar */
.newsletter-bar {
    background: var(--primary-color);
    padding: 20px 0;
    color: #fff;
    margin-top: 50px;
}

.newsletter-input {
    border: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    border-radius: 4px 0 0 4px;
}

.newsletter-btn {
    background: #e0ac1c;
    /* Goldish button */
    border: none;
    padding: 10px 20px;
    color: #000;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
}

/* Custom Swiper Navigation Buttons */
.custom-swiper-btn {
    width: 45px;
    height: 45px;
    background-color: #eae5d6;
    /* Beige/Grey match */
    border-radius: 50%;
    color: #333;
    font-weight: bold;
}

.custom-swiper-btn::after {
    font-size: 1.2rem;
    font-weight: 800;
}

.custom-swiper-btn:hover {
    background-color: #dcd6c5;
}

/* Bottom Flash Sale Banner */
.flash-sale-bottom {
    background: url('../images/slider_1.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 50px;
}

.flash-sale-bottom h5 {
    font-weight: 800;
    color: #333;
}

.flash-sale-bottom h2 {
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.btn-shop-outline {
    background: #fff;
    border: 2px solid #333;
    color: #333;
    padding: 10px 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

/* About Page Styles */
.about-hero {
    background: url('../images/slider 4.jpg') no-repeat center center;
    /* Floral/Pattern background */
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    /* High key overlay */
}

.showcase-section {
    background-color: #a68b6c;
    /* Brownish/Gold */
    padding: 60px 0;
    border-radius: 10px;
}

.flash-sale-dashed {
    border: 3px dashed #fff;
    background-color: var(--primary-color);
    /* Dark Burgundy */
    color: #ffd700;
    /* Gold */
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.service-accordion .accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-weight: 700;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.service-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: none;
}

.service-accordion .accordion-body {
    padding: 0 0 20px 0;
    color: #666;
    font-size: 0.9rem;
    border-bottom: 1px solid #ddd;
}

.about-newsletter {
    background-color: var(--primary-color);
    /* Dark Burgundy */
    color: #fff;
    padding: 40px 0;
}

.about-newsletter input {
    height: 50px;
    border-radius: 4px 0 0 4px;
    border: none;
}

.about-newsletter button {
    height: 50px;
    background-color: #e0ac1c;
    /* Gold */
    color: #000;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
}

/* Blog Page Styles */
.blog-large-post {
    margin-bottom: 60px;
}

.blog-category {
    color: var(--primary-color);
    /* Burgundy */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.blog-large-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-meta-small {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.breadcrumb-item.active {
    color: #000;
    font-weight: 600;
}

.blog-img-large {
    height: 400px;
}

/* Mobile Responsiveness for Blog */
@media (max-width: 768px) {
    .blog-img-large {
        height: 250px;
        /* Smaller height on mobile */
    }

    .blog-large-title {
        font-size: 1.4rem;
        /* Smaller title on mobile */
    }

    .about-hero h1 {
        font-size: 2.5rem;
        /* Smaller hero title */
    }

    .flash-sale-bottom {
        text-align: center;
        padding: 40px 20px !important;
    }

    .flash-sale-bottom h2 {
        font-size: 1.8rem;
    }
}

/* Custom Buttons */
.btn-burgundy {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-burgundy:hover {
    background-color: #966628;
    border-color: #966628;
    color: #fff;
}

.btn-cream {
    background-color: #eadeca;
    border-color: #eadeca;
    color: #333;
}

.btn-cream:hover {
    background-color: #d8c6b0;
    border-color: #d8c6b0;
    color: #333;
}

/* --- DASHBOARD STYLES --- */
.dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.dashboard-sidebar .nav-link {
    color: #333;
    padding: 15px 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border-radius: 0;
}

.dashboard-sidebar .nav-link i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.dashboard-sidebar .nav-link.active {
    background-color: #fffdf8;
    color: var(--primary-color) !important;
    border-left: 4px solid var(--primary-color);
}

.dashboard-sidebar .nav-link.active i {
    color: var(--primary-color);
}

.dashboard-sidebar .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.dashboard-content-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
}

.dashboard-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.dashboard-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

/* Profile Image Upload */
.profile-upload-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
}

.profile-preview-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-upload-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #fff;
    transition: all 0.3s;
}

.profile-upload-btn:hover {
    background: #420f21;
    transform: scale(1.1);
}

/* Dashboard Forms */
.db-form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.db-form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.db-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(89, 25, 47, 0.1);
    outline: none;
}

/* Activity List */
.activity-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.activity-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.activity-icon-box {
    width: 45px;
    height: 45px;
    background: #fdf5f8;
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-info {
    flex-grow: 1;
}

.activity-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 2px;
}

.activity-desc {
    font-weight: 700;
    color: #333;
    margin: 0;
}

.activity-time {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 600;
}

/* Header Logged In Styling */
.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    padding-left: 15px;
}

.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.logout-icon-link {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s;
    text-decoration: none;
}

.logout-icon-link:hover {
    opacity: 1;
    color: #fff;
}

/* --- ORDERS PAGE STYLES --- */
.dashboard-alert {
    background-color: #fffdf2;
    border: 1px solid #eade8c;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-alert i {
    color: #e0ac1c;
    font-size: 1.4rem;
}

.dashboard-alert p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.orders-table-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 10px 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.orders-table th {
    background-color: #fcfcfc;
    color: #888;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 15px 20px;
    border-bottom: 1.5px solid #eee;
}

.orders-table td {
    padding: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    border-bottom: 1px solid #f6f6f6;
    vertical-align: middle;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.status-in-progress {
    background-color: #fce4e4;
    color: #d9534f;
}

.status-completed {
    background-color: #e8f5e9;
    color: #4caf50;
}

.status-downloaded {
    background-color: #e8f5e9;
    color: #4caf50;
}

.payment-badge-paid {
    background-color: #e8f5e9;
    color: #4caf50;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.action-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    margin-right: 15px;
    font-size: 0.85rem;
}

.action-link.download {
    color: var(--primary-color);
    text-decoration: underline;
}

.action-link:hover {
    color: #000;
}

/* --- WISHLIST PAGE STYLES --- */
.wishlist-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.wishlist-table {
    width: 100%;
}

.wishlist-table th {
    color: #888;
    font-weight: 600;
    font-size: 0.9rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.wishlist-item {
    padding: 25px 0;
    border-bottom: 1px solid #f6f6f6;
    display: flex;
    align-items: center;
}

.wishlist-img-wrapper {
    position: relative;
    width: 100px;
}

.wishlist-img {
    width: 80px;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.remove-wishlist-btn {
    position: absolute;
    top: -8px;
    right: 12px;
    background: #fff;
    color: #333;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: 1px solid #eee;
    transition: all 0.2s;
}

.remove-wishlist-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.wishlist-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
}

.wishlist-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-preview {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    padding: 8px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-preview:hover {
    background: #f8f9fa;
    border-color: #999;
}

.btn-add-cart {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: #420f21;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(89, 25, 47, 0.2);
}

/* --- BILLING & PAYMENTS STYLES --- */
.billing-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.billing-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
}

/* Custom Toggle Switch */
.form-switch .form-check-input {
    width: 45px;
    height: 24px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
}

.form-switch .form-check-input:focus {
    box-shadow: none;
    border: none;
}

/* Payment Method Row */
.payment-method-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-icon-box {
    width: 45px;
    height: 38px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.payment-input-group {
    flex-grow: 1;
    position: relative;
}

.delete-payment-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 1.1rem;
}

/* Card Detail Box */
.card-detail-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.card-logo-box {
    width: 60px;
}

.card-info {
    flex-grow: 1;
}

.card-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.card-expiry {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}

.card-actions a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    margin-right: 15px;
}

.card-actions a.remove {
    color: #0d6efd;
}

/* Account Overview Sidebar Widget */
.account-overview-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.overview-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.overview-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.overview-label {
    font-weight: 600;
    color: #333;
}

.overview-value {
    font-weight: 700;
    color: #333;
}

.status-active-text {
    color: #28a745;
}

.date-text {
    color: var(--primary-color);
}

.btn-delete-account {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-top: 20px;
}

.btn-delete-account:hover {
    background: #fdf5f8;
    border-color: var(--primary-color);
}

.btn-delete-account i {
    color: #d9534f;
    font-size: 1.2rem;
}

/* Billing History Table */
.billing-history-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 10px 0;
    margin-top: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.billing-history-table th {
    font-size: 0.75rem;
    color: #888;
    text-transform: none;
    padding: 15px;
}

.billing-history-table td {
    font-size: 0.8rem;
    padding: 15px;
}

.status-paid {
    color: #28a745;
    font-weight: 700;
}

.action-link.billing-action {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.75rem;
}

.action-link.billing-delete {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.75rem;
}

/* --- CART PAGE REDESIGN --- */
.cart-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cart-progress::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.cart-progress.step-1::before {
    background: linear-gradient(to right, #006400 0%, #e0e0e0 0%);
}

.cart-progress.step-2::before {
    background: linear-gradient(to right, #006400 50%, #e0e0e0 50%);
}

.cart-progress.step-3::before {
    background: #006400;
}

.progress-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.step-dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s;
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
}

.progress-step.active .step-dot {
    border-color: #006400;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #006400;
}

.progress-step.active .step-dot::after {
    background: #006400;
}

.progress-step.completed .step-dot {
    background: #006400;
    border-color: #006400;
}

.progress-step.completed .step-dot::after {
    background: #fff;
}

.cart-item-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.cart-item-img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: #eee;
    border-radius: 50px;
    padding: 5px 15px;
    gap: 15px;
}

.quantity-btn {
    border: none;
    background: transparent;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.quantity-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    min-width: 20px;
    text-align: center;
}

.remove-cart-item {
    color: #d9534f;
    font-size: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.remove-cart-item:hover {
    transform: scale(1.1);
}

.order-summary-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.summary-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #666;
}

.summary-row.total {
    border-top: 1.5px solid #eee;
    padding-top: 25px;
    margin-top: 10px;
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
}

.summary-value {
    font-weight: 700;
    color: #333;
}

.summary-row.discount .summary-value {
    color: #d9534f;
}

.promo-input-group {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.promo-input {
    border: 1.5px solid #eee;
    border-radius: 8px;
    padding: 10px 15px;
    flex-grow: 1;
    font-size: 0.95rem;
    color: #666;
}

.promo-apply-btn {
    background: #420f21;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 0.95rem;
}

.checkout-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 8px;
    padding: 15px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #420f21;
    box-shadow: 0 5px 15px rgba(89, 25, 47, 0.3);
}

/* --- CHECKOUT & THANK YOU STYLES --- */
.checkout-payment-box {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.payment-options-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option-card {
    flex: 1;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.payment-option-card.active {
    border-color: #ff6600;
}

.payment-option-card img {
    height: 30px;
    margin-bottom: 12px;
}

.payment-option-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 10px;
}

.payment-radio-dot {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.payment-option-card.active .payment-radio-dot {
    border-color: #ff6600;
}

.payment-option-card.active .payment-radio-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff6600;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.qr-scan-box {
    text-align: center;
    margin-top: 40px;
}

.qr-code-img {
    width: 200px;
    height: 200px;
    border: 1px solid #eee;
    padding: 10px;
    margin: 20px auto;
}

.order-success-banner {
    text-align: center;
    padding: 40px 0;
}

.success-icon-circle {
    width: 120px;
    height: 120px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 30px;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.order-details-bar {
    background: #fffdf2;
    border: 1px solid #eade8c;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.order-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.order-detail-item i {
    color: #888;
}

.summary-card-horizontal {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.thankyou-info-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 1.5px solid #eee;
    padding-bottom: 10px;
}

.info-row {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-value {
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
}

.btn-burgundy-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-burgundy-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.report-issue-section {
    margin-top: 50px;
}

.report-issue-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.report-issue-text {
    color: #666;
    font-size: 0.9rem;
}

/* View Details Button - Premium Design */
.btn-view-details {
    padding: 8px 18px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Modern pill shape */
    background-color: #fff;
    color: var(--primary-color) !important;
    border: 1.5px solid var(--primary-color);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-view-details:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 131, 54, 0.25);
}

/* Add to Cart Button - Premium Solid Design */
.btn-add-cart {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #fff !important;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(189, 131, 54, 0.2);
}

.btn-add-cart:hover {
    background-color: #a6722e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(189, 131, 54, 0.3);
}

.btn-add-cart i {
    font-size: 1.1rem;
}

/* Add to Cart Icon Button (For Grids) */
.btn-add-cart-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(189, 131, 54, 0.2);
    flex-shrink: 0;
}

.btn-add-cart-icon:hover {
    background-color: #a6722e;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(189, 131, 54, 0.3);
}

.btn-add-cart-icon i {
    font-size: 1.2rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.offer-timer {
    background: #ff6600;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

/* Specific button in image */
.btn-pay-orange {
    background: #ff6600;
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.btn-pay-orange:hover {
    background: #e65c00;
    color: #fff;
}

.billing-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.db-form-control {
    border: 1.5px solid #eee;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #fafafa;
}

.db-form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(189, 131, 54, 0.1);
}

/* Address Selection Cards */
.address-option-card {
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    height: 100%;
}

.address-option-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(189, 131, 54, 0.1);
}

.address-option-card.active {
    border-color: var(--primary-color);
    background: #fffdf5;
}

.address-option-card .selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.address-option-card.active .selection-indicator {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.address-option-card.active .selection-indicator::after {
    content: '\F26E';
    /* bootstrap-icons check */
    font-family: 'bootstrap-icons';
    color: #fff;
    font-size: 0.7rem;
}

.address-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-card-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- NEWSLETTER STYLES --- */
.newsletter-global {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input-white {
    background: #fff !important;
    border: none !important;
    padding: 15px 25px !important;
    border-radius: 4px !important;
    flex-grow: 1;
    color: #333 !important;
}

.btn-cream-footer {
    background-color: #eadeca !important;
    border: none !important;
    border-radius: 4px !important;
    transition: all 0.3s;
}

.btn-cream-footer:hover {
    background-color: #d8ceba !important;
    transform: translateY(-2px);
}

/* --- FOOTER STYLES --- */
.footer-main {
    color: #333;
}

.footer-col-title {
    color: #000;
    font-size: 1.1rem;
    position: relative;
}

.footer-links-new {
    padding: 0;
}

.footer-links-new li {
    margin-bottom: 15px;
}

.footer-links-new a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-new a:hover {
    color: var(--primary-color);
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    font-size: 1.1rem;
}

.social-circle:hover {
    transform: scale(1.1);
    color: #fff;
}

.social-circle.fb {
    background: #3b5998;
}

.social-circle.tw {
    background: #1da1f2;
}

.social-circle.ig {
    background: #e1306c;
}

.social-circle.yt {
    background: #ff0000;
}

.social-circle.pt {
    background: #bd081c;
}

/* --- MOBILE RESPONSIVENESS (Media Queries) --- */


/* --- CONTACT PAGE STYLES --- */
.contact-info-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    height: 100%;
}

.contact-info-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-text {
    color: #666;
    font-size: 0.95rem;
}

.faq-form-section {
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 40px;
    background: #fff;
    margin-bottom: 50px;
}

.contact-form-premium .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-premium .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 6px;
    background: #fff;
}

.contact-form-premium .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-submit-now {
    background-color: #5d1638;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn-submit-now:hover {
    background-color: #4a112d;
    color: #fff;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 0.95rem;
    color: #5d1638;
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: #fff;
}

.faq-accordion .accordion-body {
    padding: 20px 0;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .header-logo {
        max-height: 40px;
    }

    .header-bottom .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .auth-menu {
        border-left: none !important;
        padding-left: 0 !important;
    }

    .navbar-toggler {
        color: #fff;
        font-size: 1.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: var(--primary-color);
        padding: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .header-top {
        padding: 10px 0;
    }

    .icon-link {
        margin-left: 10px;
    }

    .icon-link i {
        font-size: 1.25rem !important;
    }

    .header-logo {
        max-height: 40px;
    }

    /* Product Grid: 2 per row */
    .row-cols-1.row-cols-sm-2>.col {
        width: 50% !important;
    }

    .custom-category-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .category-item {
        padding: 10px;
        min-width: 80px;
    }

    .category-thumb {
        width: 55px !important;
        height: 55px !important;
    }

    .category-title {
        font-size: 0.7rem !important;
    }

    .flash-sale-dashed {
        padding: 20px 10px;
    }

    .flash-sale-dashed h2 {
        font-size: 1.3rem !important;
    }

    .exclusive-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .exclusive-banner h2 {
        font-size: 1.6rem !important;
    }

    .newsletter-global .row {
        text-align: center;
    }

    .newsletter-form-global {
        margin-top: 20px;
    }

    .newsletter-input-white {
        border-radius: 4px !important;
        margin-bottom: 10px;
    }

    .footer-main {
        text-align: center;
    }

    .footer-social-icons {
        margin-bottom: 30px;
    }

    .footer-col-title {
        margin-top: 20px;
    }

    .payment-methods-footer {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .auth-menu .auth-link {
        font-size: 0.75rem;
    }

    .success-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .thank-you-title {
        font-size: 1.6rem;
    }

    .order-details-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .order-detail-item {
        justify-content: center;
    }

    .cart-progress {
        zoom: 0.8;
    }
}

/* Adjusted Header Logo */
.header-logo {
    max-height: 80px;
    /* Adjusted height for better visibility */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Proper Banner/Slider Design */
#heroCarousel .carousel-item {
    height: 600px;
    /* Fixed height for consistency */
    background-color: #000;
    /* Fallback color */
}

#heroCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Ensures image covers area without distortion */
    object-position: center;
}

/* Enhance Carousel Captions/Indicators if needed */
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    height: 4px;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #bd8336;
        padding: 15px;
        margin-top: 5px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .header-bottom .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.1);
        border: none;
        padding-left: 15px;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

/* --- ODISHA CULTURE SECTION --- */
.odisha-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.odisha-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.odishaSwiper {
    padding: 20px 0 80px 0 !important;
}

.odisha-swiper-btn {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.odisha-swiper-btn:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.odisha-swiper-btn::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}