.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Store Page Styles */
.store-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.store-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

.store-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 80px 60px;
    max-width: 1600px !important;
    width: 100%;
    margin: 0 auto;
}

/* Override Bootstrap column width limits for store hero */
.store-hero-section .container > .row > [class*="col-"] {
    max-width: none !important;
    flex: 0 0 100% !important;
}

.store-hero-section .container {
    max-width: 1800px !important;
}

.store-hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.5;
    margin: 40px 0 36px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55);
}

.store-hero-title span {
    display: block;
}

.hero-description {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 48px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    justify-content: center;
}

.hero-cta {
    border: none;
    border-radius: 999px;
    padding: 18px 42px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    color: #fff;
    box-shadow: 0 15px 30px rgba(195, 159, 43, 0.5);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1f1c17;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .store-hero-title {
        font-size: 56px;
    }

    .hero-actions {
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .store-hero-section {
        min-height: 500px;
    }

    .store-hero-content {
        padding: 50px 30px;
        max-width: 1000px;
    }

    .store-hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 800px;
    }
}


@media (max-width: 400px){
    .store-hero-title {
        
        margin-bottom: -40px;
        font-size: 26px;
    }
    .hero-description {
        font-size: 6px;
        max-width: 100%;
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .store-hero-section {
        min-height: 450px;
    }

    .store-hero-content {
        padding: 40px 25px;
        margin-top: 70px;
        max-width: 100%;
    }

    .store-hero-title {
        font-size: 36px;
       
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
        padding-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        text-justify: auto;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 1800px) {
    .store-hero-section {
        min-height: 700px;
    }

    .store-hero-title {
        font-size: 82px;
    }
}
/* Product Card Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-animate {
    animation: fadeInUp 0.6s ease-out forwards;
}
.product-card-hidden {
    opacity: 0;
    transform: translateY(30px);
}

/* Stagger animation delays for multiple cards */
.product-card-animate:nth-child(1) { animation-delay: 0.1s; }
.product-card-animate:nth-child(2) { animation-delay: 0.2s; }
.product-card-animate:nth-child(3) { animation-delay: 0.3s; }
.product-card-animate:nth-child(4) { animation-delay: 0.4s; }
.product-card-animate:nth-child(5) { animation-delay: 0.5s; }
.product-card-animate:nth-child(6) { animation-delay: 0.6s; }
.product-card-animate:nth-child(n+7) { animation-delay: 0.7s; }

/* Products Grid Fade Transition */
.products-grid {
    transition: opacity 0.3s ease;
}
.products-grid.fading { opacity: 0.3; }

/* Background Image */
.bg-image { width: 100%; padding-top: 107px; }

/* Category Buttons */
.category-buttons { margin-bottom: 30px; }
.category-btn {
    background-color: #C39F2B;
    color: white;
    border: none;
    padding: 12px 30px;
    margin: 0 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.category-btn:hover {
    background-color: #A88A1F;
    transform: translateY(-2px);
}
.category-btn.active {
    background-color: #8B7355;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 392px);
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}
.product-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 392px;
    cursor: pointer;
}
.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 392px;
    overflow: hidden;
}

 .soldout-ribbon {
    position: absolute;
    top: 16px;
    left: -52px;
    width: 180px;
    background: #d62828;
    color: #fff;
    text-align: center;
    transform: rotate(-45deg);
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
 }

 .soldout-ribbon span {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
 }

.product-image {
    width: 392px;
    height: 392px;
    object-fit: cover;
    display: block;
}

.love-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.love-btn:hover { transform: scale(1.1); }
.love-btn i {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    -webkit-text-stroke: 1px #000;
}
.love-btn.liked i {
    color: #000;
    -webkit-text-stroke: none;
}

.product-info { padding: 20px; text-align: right; }
.price-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.price {
    font-size: 18px;
    font-weight: 700;
    color: #C39F2B;
    text-align: left;
}
.title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: right;
}
.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Colors */
.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
}
.color-circles { display: flex; gap: 8px; }
.color-circle.black { background-color: #000; }
.color-circle.red { background-color: #ff4757; }
.color-circle.green { background-color: #2ed573; }
.color-circle.light-green { background-color: #7bed9f; }
.color-circle.dark-green { background-color: #2f3542; }
.color-circle.pink { background-color: #ff6b81; }
.color-circle.light-blue { background-color: #70a1ff; }
.color-circle.yellow { background-color: #ffa502; }
.color-circle.orange { background-color: #ff6348; }
.color-circle.white { background-color: #f1f2f6; border: 1px solid #ddd; }

/* Load More Button */
.load-more-btn {
    background-color: #C39F2B;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}
.load-more-btn:hover {
    background-color: #A88A1F;
    transform: translateY(-2px);
}

/* Load More Button Container */
.text-center.mt-4 {
    text-align: center !important;
    width: 100%;
    padding: 20px 0;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
}
.filters-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: right;
}

/* Applied Filters */
.applied-filters { margin-bottom: 15px; }
.applied-filter {
    background-color: rgba(195, 159, 43, 0.6);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.applied-filter i {
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s ease;
}
.applied-filter i:hover { color: #ff4757; }

/* Filter Action Buttons */
.filter-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.applied-filters-btn {
    background-color: #C39F2B;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.applied-filters-btn:hover { background-color: #A88A1F; }
.clear-filters-btn {
    background: none;
    color: #C39F2B;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}
.clear-filters-btn:hover { color: #A88A1F; }

/* Filter Categories */
.filter-category {
    border: 1px solid #C39F2B;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}
.filter-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: right;
}
.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    text-align: right;
}
.checkbox-item:last-child { margin-bottom: 0; }
.filter-checkbox {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    accent-color: #C39F2B;
    cursor: pointer;
}

/* Radio Button Styling to Match Checkboxes */
.radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    text-align: right;
}
.radio-item:last-child { margin-bottom: 0; }
.filter-radio {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    accent-color: #C39F2B;
    cursor: pointer;
}
.checkbox-item label,
.radio-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    flex: 1;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    background-color: #C39F2B;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto 40px auto; /* Added bottom margin */
    width: 200px;
}
.mobile-filter-btn:hover {
    background-color: #A88A1F;
    transform: translateY(-2px);
}
.mobile-filter-btn i { margin-left: 8px; }

/* Mobile Filter Overlay */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.mobile-filter-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
}
.mobile-filter-content.show { transform: translateX(0); }
.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.mobile-filter-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.mobile-filter-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}
.mobile-filter-close:hover { color: #C39F2B; }

/* Responsive Design */
@media (max-width: 991px) {
    .main-container { margin-left: 60px !important; margin-right: 60px !important; }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-content: center;
        max-width: 400px; 
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }
    .product-box { width: 100%; max-width: 392px; margin: 0 auto; }
    .product-image-container { height: 300px; }
    .product-image { width: 100%; height: 300px; object-fit: cover !important; }
    .category-btn { margin: 5px; padding: 10px 20px; font-size: 14px; }
}

@media (max-width: 768px) {
    .filters-section { margin-top: 20px; }
    .products-grid { grid-template-columns: 1fr; padding: 0 15px; margin-top: 15px; }
    .product-box { max-width: 400px; }
    .category-buttons { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .category-btn { margin: 0; width: 200px; }
}

@media (min-width: 768px) and (max-width: 1166px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 1fr));
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
        justify-content: center;
    }
    .product-box { width: 100%; max-width: 392px; margin: 0 auto; }
    .product-image-container { height: 392px; width: 110%; }
    .product-image { width: 110% !important; height: 392px !important; object-fit: cover !important; }
}

@media (min-width: 992px) and (max-width: 1166px) {
    .store-filters-col {
        display: none;
    }
    .store-products-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1166px) {
    .filters-section { display: none; }
    .mobile-filter-btn { display: block; }
    .product-image { width: 122% !important; height: 405px !important; object-fit: cover !important; }
}

@media (max-width: 480px) {
    .main-container { margin-left: 10px !important; margin-right: 10px !important; }
    .mobile-filter-content { width: 100%; }
    .products-grid { width: 100%; padding: 0 10px; margin-top: 15px; }
    .product-box { width: 100%; }
    .mobile-filter-btn { margin: 15px auto 30px auto; }
}

/* Apply Filter Button Styles */
.apply-filter-section {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}
.apply-filter-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #C39F2B 0%, #D4B84D 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(195, 159, 43, 0.3);
}
.apply-filter-btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #C39F2B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 159, 43, 0.4);
}
.apply-filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(195, 159, 43, 0.3);
}
.apply-filter-btn i { font-size: 14px; }

/* Mobile Apply Filter Button */
.mobile-apply-filter-section {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}
.mobile-apply-filter-btn {
    background: linear-gradient(135deg, #C39F2B 0%, #D4B84D 100%);
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 10px;
}

/* Notification Styles */
.filter-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 16px;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 3s ease-in-out;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    15% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    85% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}
