/*
Theme Name: E-SHOP - Multipurpose eCommerce HTML Template
Author: Md. Habibur Rahman
Description: Professional Bootstrap 5 eCommerce Template.
Version: 1.0
*/
/* Base */
@import url('base.css');

/* Components */
@import url('components.css');

/* Layout */
@import url('layout.css');


.bg-light-custom {
    background-color: #f9f9f9;
}

/* Mini Cart Dropdown Styling */
.dropdown-menu {
    border-radius: 10px;
    animation: slideDown 0.3s ease-out;
}
.dropdown-item:active {
    background-color: transparent;
}
.dropdown-menu .btn-sm {
    font-size: 12px;
}
#newsletterModal .modal-content {
    border-radius: 15px;
}
#newsletterModal .form-control:focus {
    border-color: #ff4757;
    box-shadow: none;
}

#newsletterModal .btn-danger {
    background-color: #ff4757;
    border: none;
    transition: 0.3s;
}

#newsletterModal .btn-danger:hover {
    background-color: #e84118;
    transform: scale(1.02);
}

.search-container {
    max-width: 600px; 
    min-width: 300px; 
}
#smart-search {
    height: 45px; 
    border: 1px solid #ddd;
    padding-left: 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#smart-search:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

#smart-search:focus + .input-group-text {
    border-color: var(--primary-color);
    padding-right: 20px;
    cursor: pointer;
}
#search-results {
    border-radius: 10px;
    margin-top: 10px !important;
    border: 1px solid #eee;
}

/* Gradient Text Paradox */
.hero-software .container {
        position: relative;
        z-index: 5; /* কন্টেন্ট থাকবে সবার উপরে */
    }
    .text-gradient-danger {
        background: linear-gradient(to right, #ff4d4d, #f97316);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Paradox Background Shapes */
    .paradox-blob {
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(220, 53, 69, 0.6) 0%, transparent 70%); /* Opacity বাড়ানো হয়েছে */
        filter: blur(50px);
        z-index: 1;
        top: -100px;
        left: -100px;
        animation: float-paradox 15s infinite alternate ease-in-out;
    }

    .paradox-blob-2 {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(126, 235, 37, 0.4) 0%, transparent 70%); /* ব্লু শেপ */
        filter: blur(80px);
        z-index: 1;
        bottom: -150px;
        right: -100px;
        animation: float-paradox 20s infinite alternate-reverse ease-in-out;
    }

    @keyframes float-paradox {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(100px, 50px) scale(1.1); }
        100% { transform: translate(-50px, 100px) scale(1); }
    }

    
    /* Search Box Focus Effect */
    .search-box-wrapper:focus-within {
        background: rgba(255, 255, 255, 0.2) !important;
        transition: 0.3s ease;
    }
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff4757 !important;
}
.top-nav-links .nav-link {
    transition: color 0.3s ease;
}
.top-nav-links .nav-link:hover {
    color: #dc3545 !important; /* SoftHaat Red */
}
.hover-text-white:hover {
    color: #ffffff !important;
}
.product-card:hover .card-img-top {
        transform: scale(1.1);
    }
    .product-card:hover .product-overlay {
        opacity: 1 !important;
    }
    .transition-3 { transition: all 0.3s ease; }
    .transition-5 { transition: all 0.5s ease; }
    .bg-danger-subtle { background-color: rgba(220, 53, 69, 0.1); }

.tracking-wider {
    letter-spacing: 2px;
}
.service-item {
    background: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: #ff4757; 
}

.service-item:hover .service-icon i {
    color: #fff !important; 
}

.service-text h6 {
    font-size: 16px;
    color: #2f3542;
}
.deal-wrapper {
    background: linear-gradient(45deg, #1a1a1a, #2d3436);
    min-height: 450px;
}

.deal-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    z-index: 1;
}


.timer-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-img {
    animation: floatAnim 4s ease-in-out infinite;
    max-height: 400px;
}




@media (max-width: 991px) {
    .deal-content { text-align: center; }
    #deal-timer { justify-content: center; }
    .deal-image { padding: 20px !important; }
}
.insta-item img {
    transition: transform 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1 / 1; 
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.1); 
}

.insta-overlay i {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.insta-item:hover .insta-overlay i {
    transform: translateY(0);
}

/* Category Icons Styling */
.category-item {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.category-item .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}
.flash-sale{
    background-color: #f9fbfd;
}
/* Hover Effect */
.category-item:hover .icon-box {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.category-item:hover h6 {
    color: var(--primary-color);
}
.deal-section {
    background-color: #f9fbfd;
    padding: 80px 0;
}
#backToTop {
    background-color: #ff4757;
    color: white;
    cursor: pointer;
}

#backToTop.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
}

#backToTop:not(.show) {
    transform: translateY(20px);
}

#backToTop:hover {
    background-color: #2f3542;
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    #backToTop {
        bottom: 90px !important; 
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

.fixed-menu-trigger {
    position: fixed;
    left: 0;
    top: 50%; 
    transform: translateY(-50%);
    background: #ff4757; 
    color: white;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 1050;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    writing-mode: vertical-rl; 
    text-orientation: mixed;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.fixed-menu-trigger:hover {
    padding-left: 15px;
    background: #e63946;
}

.fixed-menu-trigger i {
    writing-mode: horizontal-tb;
    font-size: 20px;
    
}

/* Hover Actions */
.product-actions {
    position: absolute;
    right: -50px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.dashboard-menu .list-group-item {
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s ease;
}

.dashboard-menu .list-group-item i {
    width: 25px;
}

.dashboard-menu .list-group-item.active {
    background-color: #ff4757 !important;
    color: #fff !important;
    border-radius: 0;
}

.dashboard-menu .list-group-item:hover:not(.active) {
    background-color: #fff5f5;
    color: #ff4757;
    padding-left: 25px;
}
.profile-img-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
#authTab .nav-link {
    color: #4b5563;
    background: #f8f9fa;
    border-bottom: 2px solid transparent;
}
#authTab .nav-link.active {
    background: #fff;
    color: #ff4757;
    border-bottom: 2px solid #ff4757;
}
.modal-content {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
}

.tracking-timeline {
    z-index: 1;
}
.progress-line {
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 4px;
    z-index: 1;
}
.progress-bar {
    height: 100%;
    transition: width 0.4s ease;
}

@media (max-width: 767px) {
    .border-start {
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }
}
#quickViewModal .modal-content {
    overflow: hidden;
    animation: fadeInScale 0.3s ease-out;
}
#quickViewModal .input-group .btn {
    border-color: #dee2e6;
}
#quickViewModal .input-group .btn:hover {
    background: #ff4757;
    color: white;
    border-color: #ff4757;
}
/* Quantity Group Fix */
.quantity-group {
    border: 1px solid #dee2e6 !important;
    display: flex;
    width: fit-content;
}
.quantity-group .btn {
    background: transparent;
    color: #333;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-group .btn:hover {
    background-color: #f8f9fa;
    color: #ff4757;
}

#qv-image {
    max-height: 400px;
    object-fit: contain;
    width: 100%;
}
.filter-sidebar {
    height: fit-content;
}

.custom-range::-webkit-slider-thumb {
    background: #ff4757;
}
.page-link:hover {
    background-color: #fff5f5;
    color: #ff4757;
}
.form-check-input:checked {
    background-color: #ff4757;
    border-color: #ff4757;
}
@media (max-width: 768px) {
    .fs-14 {
        font-size: 12px;
    }
}
.cart-qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 50px; 
    width: 110px;
    height: 38px;
    overflow: hidden;
    background: #fff;
}
.qty-btn {
    border: none;
    background: transparent;
    width: 35px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    color: #2f3542;
}
.qty-btn:hover {
    background-color: #f1f2f6;
    color: #ff4757;
}
.qty-input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    background: transparent;
}
.promo-box-container {
    max-width: 300px; 
    width: 100%;
}
.promo-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px; 
    padding: 4px; 
    transition: all 0.3s ease;
    position: relative;
    display: flex;
}
.promo-box:focus-within {
    border-color: #ff4757;
    box-shadow: 0 0 8px rgba(255, 71, 87, 0.1);
}
.promo-input-field {
    border: none !important;
    outline: none !important;
    background: transparent;
    padding: 8px 15px;
    flex-grow: 1; 
    font-size: 14px;
    width: 10px; 
}
.promo-apply-btn {
    background: #2f3542; 
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap; 
}
.promo-apply-btn:hover {
    background: #ff4757; 
    color: #fff;
}
.wishlist-page .table thead th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #4b5563;
    padding-top: 15px;
    padding-bottom: 15px;
}

.wishlist-page .table tbody td {
    padding-top: 20px;
    padding-bottom: 20px;
}
.wishlist-page .badge {
    font-weight: 600;
}

.wishlist-page .btn-outline-danger:hover {
    background-color: #ff4757;
    color: white;
}
.wishlist-page img {
    width: 60px;
    height: auto;
}
.cart-items-wrapper img {
    object-fit: cover;
    border: 1px solid #f1f1f1;
}
.parallax-window {
    height: 100vh;
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.parallax-window::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}
.new-arrivals-section {
  background: #f8fafc;
}

.product-img-box {
  position: relative;
  padding: 22px;
}
.product-img-box img {
  transition: transform .4s ease;
}

.hover-actions {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: all .35s ease;
   opacity: 1;
   right: 15px;
}
.category-label {
  font-size: 12px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.product-name a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.product-name a:hover {
  color: var(--primary-color);
}

.price-box {
  font-size: 15px;
}
.new-price {
  color: var(--primary-color);
  font-weight: 700;
}
.old-price {
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 6px;
}

.electronics-side-menu {
    border-right: none;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}
.side-category-list .list-group-item {
    border: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.side-category-list .list-group-item:hover {
    background-color: #f8f9fa;
    padding-left: 2rem; 
    color: #007bff;
}
.small-arrow {
    font-size: 10px;
    color: #ccc;
    transition: 0.3s;
}
.side-category-list .list-group-item:hover .small-arrow {
    color: #007bff;
    transform: translateX(5px);
}

.bg-soft-primary {
    background-color: #e7f1ff;
}
.theme-toggle-wrapper .btn {
    border: 1px solid #ddd;
    background: #fff;
    width: 35px;
    height: 35px;
    padding: 0;
    line-height: 33px;
    transition: 0.3s;
}
.theme-toggle-wrapper .btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

body.dark-mode .electronics-side-menu {
    background-color: #1a1a1a;
    color: #fff;
}
body.dark-mode .list-group-item {
    background-color: #1a1a1a;
    color: #ddd;
    border-color: #333;
}
body.dark-mode .menu-section-title {
    background-color: #222 !important;
}
.deal-wrapper-premium {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 500px;
}
.glow-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}
.text-gradient-cyan {
    background: linear-gradient(90deg, #00f2ff, #0072ff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.timer-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
    text-align: center;
}
.timer-box span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.timer-box small {
    color: #00f2ff;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
}
.sec-glow {
    border-color: rgba(0, 242, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}
.old-price-tech {
    display: block;
    color: #888;
    text-decoration: line-through;
    font-size: 18px;
}
.new-price-tech {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}
.btn-cyan-glow {
    background: #00f2ff;
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    transition: 0.3s;
}
.btn-cyan-glow:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}
.text-purple { color: #6f42c1 !important; }
    .icon-box i { transition: transform 0.3s; }
    .category-item:hover .icon-box i { transform: scale(1.2);
}
.category-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}
.category-icon-wrapper img {
    width: 45px !important; 
    height: 45px;
    object-fit: contain;
    transition: transform 0.4s;
}
.category-card-premium:hover .category-icon-wrapper img {
    transform: scale(1.15) rotate(5deg);
}
.category-info h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}
.category-info span {
    color: #888;
    font-size: 13px;
    font-weight: 500;
}
.text-success-gradient {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.floating-price-tag {
    position: absolute;
    top: 20%;
    right: 10%;
    background: #ffcc00;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-family: 'Quicksand', sans-serif;
    transform: rotate(15deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-grocery-primary {
    background: #2ecc71;
    color: #fff;
    border: none;
    transition: 0.3s;
}
.btn-grocery-primary:hover {
    background: #27ae60;
    transform: scale(1.05);
}
.unique-cat-card {
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.4s ease;
    padding: 20px;
}
.cat-shape-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    z-index: 1;
}
.cat-shape-wrapper img {
    width: 60px !important; 
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.unique-cat-card:hover .cat-blob {
    transform: rotate(90deg) scale(1.1);
}
.unique-cat-card:hover .cat-shape-wrapper img {
    transform: scale(1.2);
}

.unique-cat-card:hover h6 {
    color: #2ecc71;
}
.cat-content h6 {
    color: #2c3e50;
    margin-bottom: 2px;
    font-size: 17px;
    transition: 0.3s;
}
.item-count {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}
.grocery-flash-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}
.grocery-flash-card:hover {
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.12);
    border-color: #2ecc71;
    transform: translateY(-5px);
}
.card-upper {
    background: #f8fbf9;
    padding: 30px 15px;
    text-align: center;
    position: relative;
}
.discount-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px 50px 50px 0;
    font-size: 12px;
    font-weight: 700;
}
.action-overlay {
    position: absolute;
    right: -50px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.4s;
}
.grocery-flash-card:hover .action-overlay {
    right: 15px;
}
.wish-btn, .quick-view {
    border: none;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #555;
    transition: 0.3s;
}
.wish-btn:hover { background: #2ecc71; color: #fff; }

.services-wrapper {
    background: #ffffff;
    border-radius: 20px;
}
.grocery-service-card {
    padding: 10px 15px;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
@media (min-width: 992px) {
    .col-lg-3:last-child .grocery-service-card {
        border-right: none;
    }
}
@media (max-width: 991px) {
    .grocery-service-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
    }
}
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-icon-box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.grocery-service-card:hover .service-icon-box {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.font-quicksand { font-family: 'Quicksand', sans-serif; }
.extra-small { font-size: 13px; }

.product-img-box { height: 200px; display: flex; align-items: center; justify-content: center; }
.main-img { transition: 0.5s ease; max-height: 140px; object-fit: contain; }
.action-btn {
    border: none;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #444;
    font-size: 14px;
    transition: 0.3s;
}
.action-btn:hover { background: #2ecc71; color: #fff; }
.btn-cart-plus {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}
.btn-cart-plus:hover {
    background: #27ae60;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    border-radius: 50%; 
}
.extra-small { font-size: 11px; }
.blog-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: #2ecc71;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.1) !important;
}
.blog-img-box {
    overflow: hidden;
    height: 220px;
}
.blog-img-box img {
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}
.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #2ecc71;
    color: #fff;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.post-title a {
    transition: 0.3s;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-title a:hover {
    color: #2ecc71 !important;
}
.read-more-btn {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}
.read-more-btn:hover {
    color: #27ae60;
    letter-spacing: 1px;
}
.cart-img-box { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.cart-qty-control { width: 110px; background: #fff; }
.qty-btn {
    border: none;
    background: transparent;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: 0.3s;
}
.qty-btn:hover { color: #2ecc71; background: #f8fbf9; }
.qty-input { width: 40px; font-size: 14px; outline: none; }
.btn-light-danger {
    background: #fff5f5;
    color: #ff4757;
    transition: 0.3s;
}
.btn-light-danger:hover {
    background: #ff4757;
    color: #fff;
}
.rounded-pill-start { border-radius: 50px 0 0 50px !important; }
.rounded-pill-end { border-radius: 0 50px 50px 0 !important; }
.coupon-input-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px; 
    overflow: hidden; 
    padding: 5px; 
}
.coupon-input {
    border: none !important;
    box-shadow: none !important;
    padding-left: 20px;
    height: 45px;
    background: transparent;
}

.coupon-btn {
    border-radius: 50px !important; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 0 25px;
    height: 45px;
}
.coupon-input-wrapper:focus-within {
    border-color: #2ecc71;
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.1) !important;
}
.social-btn {
    width: 38px;
    height: 38px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}
.social-btn:hover { background: #2ecc71; transform: translateY(-3px); }
.grocery-card {
    transition: 0.3s;
    border: 1px solid #f0f0f0 !important;
}
.grocery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    border-color: #2ecc71 !important;
}
.card-img-area {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-img-area img {
    max-height: 140px;
    transition: 0.5s;
}

.grocery-card:hover .card-img-area img {
    transform: scale(1.1);
}
.side-actions {
    position: absolute;
    right: -50px;
    top: 15px;
    transition: 0.3s;
}
.grocery-card:hover .side-actions {
    right: 15px;
}
.wish-btn {
    border: none;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #888;
    transition: 0.3s;
}
.wish-btn:hover {
    background: #e74c3c;
    color: #fff;
}
.font-quicksand { font-family: 'Quicksand', sans-serif; }
.top-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}
.top-link:hover {
    color: #ffc107; 
}
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.top-dropdown .dropdown-toggle::after {
    font-size: 10px;
    vertical-align: middle;
}
.top-dropdown .dropdown-item {
    font-size: 13px;
    font-weight: 600;
}
.login-btn {
    font-size: 12px !important;
    padding: 4px 15px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.top-info-item small {
    font-size: 13px;
    letter-spacing: 0.3px;
}
.top-nav-links .nav-link {
    padding: 0;
    color: #555;
    font-size: var(--fs-13);
    transition: 0.3s;
}
.top-nav-links .nav-link:hover {
    color: var(--store-primary);
}
.custom-top-dropdown .btn {
    font-size: var(--fs-13);
    color: #444;
}
.custom-top-dropdown .dropdown-toggle::after {
    border-top: .3em solid #999;
}
.user-auth:hover i {
    transform: scale(1.2);
    transition: 0.3s;
}
.text-primary { color: var(--store-primary) !important; }
.top-bar {
    letter-spacing: 0.2px;
    z-index: 1030;
}

.hover-info:hover {
    color: #0dcaf0 !important; 
    transition: 0.2s ease-in-out;
}
.top-links-nav {
    display: flex;
    gap: 20px;
}
.nav-link-tech {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: 0.3s;
}
.nav-link-tech:hover {
    color: #fff;
}
.auth-box i {
    font-size: 15px;
    vertical-align: middle;
}

.text-gold { color: #d4af37; } /* Classic Gold */
.fashion-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}
.fashion-link:hover {
    color: #d4af37;
}
.fashion-dropdown .btn {
    text-decoration: none;
    box-shadow: none;
}
.fashion-dropdown .dropdown-toggle::after {
    font-size: 9px;
    margin-left: 5px;
    color: #d4af37;
}
.fashion-dropdown .dropdown-menu {
    z-index: 9999 !important;
}
.fashion-dropdown .dropdown-item {
    color: #000;
}
.top-bar {
    z-index: 1060 !important; 
}
.verified-badge {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #198754;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(25, 135, 84, 0.2);
    z-index: 10;
}
.floating-slow {
    animation: floatHero 6s ease-in-out infinite;
}
.flash-sale-minimal { font-family: 'Inter', sans-serif; background: #fff; }
.t-unit {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}
.t-unit span { font-size: 10px; text-transform: uppercase; margin-left: 2px; color: #888; }
.img-main { max-width: 80%; transition: 0.5s ease; transform: scale(1.1);}
.deal-card-premium {
    background: #0f172a; 
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.abstract-blur-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 1;
}
.deal-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -2px; }
.text-gradient-red { background: linear-gradient(90deg, #ff4d4d, #f97316); background-clip: text; -webkit-text-fill-color: transparent; }
.modern-timer .t-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    min-width: 80px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}
.modern-timer .t-box span { display: block; font-size: 24px; font-weight: 800; color: #fff; }
.modern-timer .t-box small { font-size: 10px; text-transform: uppercase; color: #94a3b8; font-weight: 700; }
.t-sep { font-size: 24px; font-weight: bold; color: rgba(255, 255, 255, 0.2); align-self: center; }
.floating-img { filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }

@media (max-width: 991px) {
    .deal-title { font-size: 2.2rem; }
    .modern-timer .t-box { min-width: 60px; padding: 10px; }
}
.custom-nav-minimal button {
    border: 1px solid #eee;
    background: #fff;
    width: 45px; height: 45px;
    border-radius: 50%;
    transition: 0.3s;
}
.custom-nav-minimal button:hover {
    background: #111827;
    color: #fff;
}
.modern-cat-item {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8faff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 15px;
    transition: 0.3s;
}
.cat-content h6 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}
.item-count {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modern-cat-item:hover {
    background: #ffffff;
    border-color: #0d6efd;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.08) !important;
}
.modern-cat-item:hover .cat-icon-wrapper {
    background: #0d6efd;
    color: #ffffff;
    transform: rotate(10deg);
}
.insta-premium-section { font-family: 'Plus Jakarta Sans', sans-serif; overflow: hidden; }
.shop-tag {
    background: #fff;
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s;
}

.insta-card:hover .shop-tag { transform: translateY(0); }
.insta-meta {
    margin-top: 15px;
    color: #fff;
    font-size: 14px;
    display: flex;
    gap: 15px;
}
.btn-insta-follow {
    padding: 12px 25px;
    border: 2px solid #eee;
    border-radius: 12px;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-insta-follow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
.text-gradient-blue { background: linear-gradient(90deg, #0d6efd, #00d4ff); background-clip: text; -webkit-text-fill-color: transparent; }
.product-tag-mini {
    position: absolute;
    bottom: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #111827;
}
.rating-stars { color: #ffc107; font-size: 12px; }
.review-text { font-size: 15px; font-style: italic; color: #4b5563; line-height: 1.6; }
.user-avatar {
    width: 45px !important; 
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f7ff;
}
.btn-dark-premium {
    background: #0f172a; color: #fff;
    font-weight: 700; font-size: 14px;
    transition: 0.3s;
}
.social-circle {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; text-decoration: none;
    transition: 0.3s;
}
.social-circle:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}
.mobile-nav-premium {
    position: fixed; bottom: 15px; left: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    height: 70px; border-radius: 20px;
    display: flex; justify-content: space-around; align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.5);
}
.cart-badge-wrapper { position: relative; }
.cart-badge-wrapper .badge {
    position: absolute; top: -5px; right: -10px;
    background: #ef4444; font-size: 9px;
    padding: 3px 6px; border-radius: 50%;
}
.card:hover .primary-img { opacity: 0; transform: scale(1.1); }
.modern-product-card:hover .secondary-img { opacity: 1; transform: scale(1.1); }

.m-badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 30px;
    z-index: 3;
    text-transform: uppercase;
}
.m-badge.sale { background: #ff4d4d; color: #fff; }
.m-quick-actions {
    position: absolute;
    right: -50px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.4s;
    z-index: 4;
}
.m-quick-actions button {
    width: 35px; height: 35px;
    background: #fff; border: none;
    border-radius: 50%; font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.m-quick-actions button:hover { background: #0d6efd; color: #fff; }
.modern-product-card:hover .m-quick-actions { right: 10px; }
.m-add-cart-box {
    position: absolute;
    bottom: -60px;
    width: 100%;
    padding: 10px;
    transition: 0.4s;
}
.modern-product-card:hover .m-add-cart-box { bottom: 0; }
.m-category { font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; }
.m-title a { color: #111; text-decoration: none; font-weight: 700; font-size: 15px; transition: 0.3s; }
.m-title a:hover { color: #0d6efd; }
.btn-wishlist.active i, 
.btn-wishlist i.fas {
    color: #ff4d4d !important;
}
.fs-product-title {
    transition: color 0.3s ease;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fs-product-title:hover {
    color: var(--primary-color);
}
.error-section {
            padding: 120px 0;
            background-color: #fcfcfc;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .error-wrapper {
            max-width: 700px;
            margin: 0 auto;
        }
        .error-number {
            font-size: 180px;
            font-weight: 900;
            color: #dc3545; /* আপনার থিম কালার */
            line-height: 1;
            position: relative;
            margin-bottom: 20px;
            letter-spacing: -5px;
        }
        /* এনিমেশন ইফেক্ট */
        .error-number span {
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }
        .error-number span:nth-child(2) { animation-delay: 0.5s; }
        .error-number span:nth-child(3) { animation-delay: 1s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .error-info h2 {
            font-size: 36px;
            font-weight: 800;
            color: #222;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .error-info p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }
        
        .search-form-404 {
            max-width: 500px;
            margin: 0 auto 30px;
        }
        .search-form-404 .form-control {
            height: 55px;
            border-radius: 30px 0 0 30px;
            padding-left: 25px;
            border: 2px solid #eee;
        }
        .search-form-404 .btn {
            border-radius: 0 30px 30px 0;
            padding: 0 30px;
            font-weight: bold;
        }
        
        .back-home-btn {
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.4s;
            box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
        }
        .back-home-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(220, 53, 69, 0.3);
        }