/* General Styles */
:root {
    --primary: #2a2a72;
    --accent-color: #313160 !important;
    --secondary: #009ffd;
    --glass: rgba(255, 255, 255, 0.98);
    --text: #000000;
    --light-text: rgba(0, 0, 0, 0.7);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --hover-bg: rgba(42, 42, 114, 0.1);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --footer-bg: #ffffff;
    --transition-speed: 0.8s;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f8f9fa;
    color: var(--text);
}

h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

a:hover {
    color: var(--primary);
}



.slider-container {
    width: 100%;
    aspect-ratio: 31/10;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}





.slider-track {
    display: flex;
    transition: transform var(--transition-speed) ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide a {
    color: #fff;
    text-decoration: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white !important;
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.slide:hover .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow:
        -1px -1px 2px rgba(0, 0, 0, 0.8),
        1px -1px 2px rgba(0, 0, 0, 0.8),
        -1px 1px 2px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.8);
}


.slide-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-slide {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 99;
}

.btn-slide:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slider-container:hover .slider-controls {
    opacity: 1;
    pointer-events: all;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background-color: white;
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Category Section Styles */
.category-section {
    margin: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 10px auto;
    border-radius: 2px;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 25px;
    justify-items: center;
}

.category-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 140px;
}

.category-badge:hover {
    transform: translateY(-5px);
}

.image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-badge:hover .image-container {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-badge:hover .image-container img {
    transform: scale(1.1);
}

.category-name {
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.category-badge:hover .category-name {
    color: var(--accent-color);
}

/* Colorful borders for each category */
.border-1 {
    border: 4px solid #FF9F43;
}

.border-2 {
    border: 4px solid #FF6B6B;
}

.border-3 {
    border: 4px solid #48DBFB;
}

.border-4 {
    border: 4px solid #1DD1A1;
}

.border-5 {
    border: 4px solid #54A0FF;
}

.border-6 {
    border: 4px solid #5F27CD;
}

.border-7 {
    border: 4px solid #FF9FF3;
}

.border-8 {
    border: 4px solid #F368E0;
}

.border-9 {
    border: 4px solid #FFD166;
}

.border-10 {
    border: 4px solid #06D6A0;
}

.border-11 {
    border: 4px solid #118AB2;
}

.border-12 {
    border: 4px solid #073B4C;
}

/* Sale Section Styles */
.sale-section {
    margin: 50px 0;
    padding: 30px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.sale-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.sale-title i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.countdown-container {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.countdown-label {
    font-weight: 600;
    margin-right: 15px;
    color: var(--dark-color);
}

.countdown-timer {
    display: flex;
    gap: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.time-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.shop-more-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.shop-more-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.shop-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.shop-more-btn:hover i {
    transform: translateX(5px);
}

/* Product Slider Styles */
.products-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.products-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.product-card {
    flex: 0 0 calc(25% - 15px);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-inner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}



.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--discount-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.product-pricing {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 10px;
}

.original-price {
    font-size: 0.9rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.products-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    margin-left: 0px !important;
}

.products-slider-container:hover .products-slider-controls {
    opacity: 1;
    pointer-events: all;
}

.products-slider-btn {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-slider-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.products-slider-btn i {
    font-size: 1.2rem;
}

/* New Arrivals Section */
.new-arrivals-section {
    margin: 50px 0;
}

/* Testimonial Section */
.testimonial-section {
    margin: 50px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    border-radius: 15px;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 2rem;
}

.review {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.review::before,
.review::after {
    content: '"';
    font-size: 2rem;
    color: rgba(42, 42, 114, 0.2);
    line-height: 0;
}

.review::before {
    vertical-align: -0.4em;
    margin-right: 0.25em;
}

.review::after {
    vertical-align: -0.6em;
    margin-left: 0.25em;
}

.author {
    font-weight: 600;
    color: #212529;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #f1f1f1;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-dot.active {
    background: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    margin: 50px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-input {
    padding: 12px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    width: 300px;
    font-size: 1rem;
}

.newsletter-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--accent-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Animation for slide in effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn var(--transition-speed) ease-out;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .category-container {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 20px;
    }

    .image-container {
        width: 90px;
        height: 90px;
    }

    .image-container img {
        width: 100%;
        height: 100%;
    }

    .product-card {
        flex: 0 0 calc(33.333% - 15px);
    }
}

@media (max-width: 992px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slider-btn,
    .products-slider-btn {
        width: 40px;
        height: 40px;
    }

    .slide-overlay {
        padding: 20px;
    }

    .category-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .image-container {
        width: 80px;
        height: 80px;
    }

    .image-container img {
        width: 100%;
        height: 100%;
    }

    .category-name {
        font-size: 0.85rem;
    }

    .product-card {
        flex: 0 0 calc(100% - 15px);
    }

    .countdown-timer {
        gap: 5px;
    }

    .time-unit {
        min-width: 40px;
        padding: 6px 8px;
    }

    .time-value {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 10px;
        width: 100%;
        max-width: 300px;
    }

    .newsletter-btn {
        border-radius: 50px;
        width: 100%;
        max-width: 300px;
    }

    .products-slider-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.2rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .btn-slide {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .slider-indicators {
        padding: 8px 12px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .category-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .image-container {
        width: 70px;
        height: 70px;
    }

    .image-container img {
        width: 45px;
        height: 45px;
    }

    .category-name {
        font-size: 0.8rem;
    }

    .countdown-container {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(104, 104, 237, 0.037), rgb(255, 255, 255)),
        url('../images/hero-bg.jpg') center/cover no-repeat;

    margin-top: 20 !important;
}

/* Product Cards */
.product-card {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 5px;
    height: 100%;
    padding-bottom: 40px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-image img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 10px;
}

.product-name {
    margin: 0 0 0px 0;
    font-size: 16px;
    color: #2f3542;
    font-weight: 700;
}

.product-desc {
    margin: 0 0 0px 0;
    font-size: 13px;
    color: #747d8c;
    line-height: 1.4;
    /* height: 40px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.price-container {
    margin: 6px 0;
}

.original-price {
    font-size: 13px;
    color: var(--text);
    text-decoration: line-through;
    margin-right: 0px;
    margin-left: 0;
}

.current-price {
    font-size: 18px;
    color: var(--primary);
    font-weight: bold;
}


.details-btn {
    width: 90%;
    padding: 10px;
    left: auto;
    right: auto;
    bottom: 0;
    position: absolute;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px !important;
}

.details-btn:hover {
    background: linear-gradient(135deg, var(--primary), #654897);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
    color: white;
}

.btn-dark {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1e2229;
    color: white;
}


.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: darken(var(--primary), 10%);
    border-color: darken(var(--primary), 15%);
}

/* Quantity Input */
.quantity-input {
    max-width: 50px;
    text-align: center;
    border-color: var(--secondary);
}

/* Rating */
.stars {
    color: #ffc107;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: rgb(0, 0, 0);
    padding: 50px 0 20px;
}

footer li {
    color: #000000 !important;
}

footer ul li a {
    color: #000000 !important;
}

footer a:hover {
    color: rgb(0, 0, 0);
}



/* track order */


.track-order {
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
}

.badge-track {
    /* position: absolute; */
    top: 12px;
    right: 12px;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}


.page-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
}

.track-card {
    border-radius: 12px;
    overflow: hidden;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.form-control:focus {
    border-color: #adb5bd;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.1);
}



.order-status .progress {
    border-radius: 3px;
}

.order-details span:last-child {
    color: var(--primary);
}

.shipping-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.table {
    font-size: 0.9rem;
}

.table th {
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.item-tt {
    font-size: 12px;
    color: var(--text);
    font-weight: 400;
}

.table td {
    vertical-align: middle;
    padding: 1rem 0.5rem;
}

.alert {
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .track-card {
        border-radius: 8px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}


/* cart  */


.cart-items {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-items-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-items-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.cart-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}


.cart-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
}


.cart-page .product-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.cart-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-page .product-info {
    flex: 1;
}

.cart-page .product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.cart-page .product-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-info {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: #a4b0be;
    text-decoration: line-through;
    margin-left: 0px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-input {
    width: 40px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.item-total {
    position: absolute;
    right: 0;
    bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.remove-btn {
    position: absolute;
    top: 20px;
    right: 0;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.continue-btn,
.update-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.continue-btn {
    border: 1px solid #212529;
    color: #212529;
    background: white;
}

.continue-btn:hover {
    background: #f8f9fa;
}

.update-btn {
    background: #212529;
    color: white;
}

.update-btn:hover {
    background: #343a40;
}

.order-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.summary-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.summary-body {
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.summary-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.checkout-btn:hover {
    background: #3b27ae;
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    color: #6c757d;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #212529;
}

.empty-cart p {
    color: #6c757d;
    margin-bottom: 25px;
}

.shop-btn {
    padding: 10px 30px;
    background: #212529;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.shop-btn:hover {
    background: #343a40;
    color: white;
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
    }

    .cart-page .product-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .item-total {
        position: static;
        margin-top: 15px;
    }

    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }

    .continue-btn,
    .update-btn {
        width: 100%;
        text-align: center;
    }
}




/* shop */


.shop-page {
    background-color: #f8f9fa;
}

.sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.category-item:hover {
    background-color: #f0f0f0;
    color: #333;
}

.category-item.active {
    background-color: #212529;
    color: white;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-icon {
    font-size: 0.7rem;
}

.sort-menu {
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
    z-index: 10;
    display: none;
}

.sort-dropdown:hover .sort-menu {
    display: block;
}

.sort-item {
    display: block;
    padding: 8px 16px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.sort-item:hover {
    background-color: #f8f9fa;
    color: #333;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.empty-state p {
    color: #666;
    margin-bottom: 20px;
}



/* login */


.login-page {
    display: flex;
    background-color: #f8f9fa;
    padding: 20px;
}

.login-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.login-card {
    background: var(--glass);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.login-header p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

.login-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(42, 42, 114, 0.1);
    outline: none;
}

.form-group input.is-invalid {
    border-color: #c62828;
}

.invalid-feedback {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
}

.remember-me span {
    color: var(--light-text);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.login-btn:hover {
    background-color: #1e1e5a;
}

.login-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--light-text);
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }
}

/* register */


.register-page {
    display: flex;
    background-color: #f8f9fa;
    padding: 20px;
}

.register-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.register-card {
    background: var(--glass);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.register-header {
    margin-bottom: 30px;
    text-align: center;
}

.register-header h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.register-header p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

.register-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(42, 42, 114, 0.1);
    outline: none;
}

.form-group input.is-invalid {
    border-color: #c62828;
}

.invalid-feedback {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--light-text);
}

.register-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.register-btn:hover {
    background-color: #1e1e5a;
}

.register-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
}

.register-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.register-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .register-card {
        padding: 30px 20px;
    }

    .register-header h2 {
        font-size: 1.5rem;
    }
}



/* contact  */


.minimal-contact {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
}



.contact-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.email {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.address {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.whatsapp .contact-link {
    background: #25D366;
    color: white;
}

.whatsapp .contact-link:hover {
    background: #1da851;
}

.email .contact-link {
    background: #4285F4;
    color: white;
}

.email .contact-link:hover {
    background: #3367d6;
}

.address .contact-link {
    background: #EA4335;
    color: white;
}

.address .contact-link:hover {
    background: #d33426;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 1.75rem;
    }
}



/* newsletter  */


.newsletter-section {
    background: linear-gradient(135deg, rgb(31, 31, 93) 0%, #1a1a4a 100%);
    padding: 4rem 1rem;
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.newsletter-text {
    text-align: center;
    max-width: 600px;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.newsletter-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
}

.newsletter-section .input-group {
    display: flex;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section .input-group:focus-within {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-section .input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
}

.newsletter-section .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-section .input-group input:focus {
    outline: none;
}

.newsletter-section .input-group button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    background: white;
    color: #2a2a72;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-section .input-group button:hover {
    background: #f0f0f0;
}

.newsletter-section .input-group button svg {
    transition: transform 0.3s ease;
}

.newsletter-section .input-group button:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .newsletter-text h2 {
        font-size: 1.5rem;
    }

    .newsletter-section .input-group {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        gap: 0.5rem;
    }

    .newsletter-section .input-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    .newsletter-section .input-group button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        border-radius: 8px;
    }
}




@media (max-width: 768px) {
    body {
        padding-top: 0px;
    }

    .hero-section {
        padding: 0px 0;
        text-align: center;
        margin-top: 0 !important;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }
}


/* ========== NAVBAR STYLES ========== */
.navbar {
    background: #f1f1f1;
    padding: 8px 0;
}

/* Desktop Layout */
.navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    gap: 20px;
}

/* Center navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    margin: 0;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

/* Dropdown positioning fix */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
}

.dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Search bar */
.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 240px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 10px 15px;
    flex: 1;
    font-size: 14px;
}

.search-bar button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
}

.search-bar button:hover {
    background: var(--primary);
}

/* Search dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-dropdown.active {
    display: block;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-name {
    font-size: 14px;
    color: #333;
}

.search-result-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: bold;
}

.no-results {
    padding: 10px 15px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icons i {
    font-size: 20px;
    color: #000;
    cursor: pointer;
    transition: 0.2s;
}

.nav-icons i:hover {
    color: var(--primary);
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-icon-item {
    position: relative;
    display: inline-block;
}

/* Mobile Layout - FIXED */
@media (max-width: 992px) {
    .navbar {
        padding: 6px 0;
    }

    .navbar .navbar-container {
        flex-wrap: wrap;
        gap: 5px;
    }

    /* Mobile header row - FIXED SPACING */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 2px;
        gap: 2px;
    }

    /* Menu button - FIXED */
    .mobile-menu-btn {
        padding: 6px 8px;
        margin: 0;
        border: none;
        background: none;
    }

    .mobile-menu-btn i {
        font-size: 18px;
    }

    /* Logo - FIXED */
    .navbar-brand {
        margin: 0;
        padding: 0;
        flex-grow: 1;
        text-align: center;
    }

    .navbar-brand h5 {
        margin: 0;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
    }

    /* Icons - FIXED */
    .mobile-header .nav-icons {
        gap: 8px;
        margin: 0;
        padding: 0;
    }

    .mobile-header .nav-icon-item {
        padding: 4px 2px;
    }

    .mobile-header .nav-icons i {
        font-size: 18px;
    }

    /* Hide desktop nav */
    .navbar-nav {
        display: none;
    }

    /* Mobile sidebar */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 1050;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        overflow-y: auto;
    }

    .mobile-sidebar.active {
        left: 0;
    }

    .mobile-sidebar .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-nav {
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

    .mobile-nav .nav-item {
        margin-bottom: 15px;
    }

    .mobile-nav .nav-link {
        color: #333;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 16px;
        display: block;
        padding: 8px 0;
    }

    .mobile-nav .dropdown-menu {
        display: block;
        position: absolute;
        inset: 0px auto auto 0px;
        margin: 0px;
        transform: translate3d(0px, 42px, 0px);
    }

    /* Mobile search */
    .mobile-search {
        width: 100%;
        margin-top: 10px;
        display: none;
        position: relative;
        padding: 0 2px;
    }

    .mobile-search.active {
        display: flex;
    }

    .mobile-search .search-bar {
        width: 100%;
    }

    /* Overlay for sidebar */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1049;
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }
}

/* Desktop only */
@media (min-width: 993px) {

    .mobile-menu-btn,
    .mobile-search-btn,
    .mobile-sidebar,
    .sidebar-overlay {
        display: none !important;
    }

    .nav-icons {
        gap: 20px;
    }
}




@media (max-width: 767.98px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: center;
    }

    .sort-dropdown {
        align-self: stretch;
    }

    .sort-btn {
        justify-content: center;
        width: 100%;
    }

    .price-inputs {
        flex-direction: column;
        gap: 1rem;
    }

    .price-input-group {
        margin: 0 !important;
        width: 100%;
    }

    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .breadcrumb-item a {
        color: #6c757d;
        transition: color 0.3s ease;
    }

    .breadcrumb-item a:hover {
        color: #2a2a72;
    }

    .breadcrumb-item.active {
        color: #2a2a72;
        font-weight: 700;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        content: "›";
        color: #6c757d;
    }
}



.shop-header {
    padding: 1.5rem 0;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.header {
    width: 100%;
}

.shop-title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.8rem;
}

.sort-dropdown {
    position: relative;
}

.sort-btn {
    background: white;
    border: 1px solid #dee2e6;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 500;
}

.sort-btn:hover {
    border-color: #2a2a72;
    color: #2a2a72;
}

.sort-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    z-index: 100;
    display: none;
    margin-top: 0.5rem;
    overflow: hidden;
}

.sort-menu.show {
    display: block;
}

.sort-item {
    display: block;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #555;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sort-item:last-child {
    border-bottom: none;
}

.sort-item:hover {
    background: #f8f9fa;
    color: #2a2a72;
    padding-left: 1.5rem;
}

.sort-item.active {
    background: #2a2a72;
    color: white;
}