/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    padding: 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styles */
.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #00a6aa;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #051e44;
}

/* Navigation Menu Styles */
.main-navigation {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #051e44;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #00a6aa;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00a6aa;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* CTA Button Styles */
.btn-explore {
    background-color: #00a6aa;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #00a6aa;
}

.btn-explore:hover {
    background-color: #051e44;
    border-color: #051e44;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 170, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #051e44;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.mobile-menu-toggle:hover {
    color: #00a6aa;
}

/* Mobile Menu Styles */
.mobile-menu {
    padding-top: 20px;
}

.mobile-navigation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu li:last-child {
    margin-bottom: 0;
}

.mobile-nav-menu li a {
    color: #051e44;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    background-color: #00a6aa;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu li a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: inline-block;
    }
    
    .btn-explore {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .logo a {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .main-header {
        padding: 15px 0;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .btn-explore {
        padding: 8px 15px;
        font-size: 11px;
    }
}





/* Main Slider Section Styles */
.main-slider-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

.main-slider-section .carousel {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-slider-section .carousel-inner {
    border-radius: 15px;
}

/* Use background images on each carousel-item and make them cover */
.main-slider-section .carousel-item {
    transition: transform 0.6s ease-in-out;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay content */
.main-slider-section .slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.main-slider-section .slider-caption {
    max-width: 700px;
    padding: 40px;
}

.main-slider-section .slider-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.main-slider-section .slider-subtitle {
    font-size: 18px;
    color: #f3f7f9;
    margin-bottom: 20px;
}

/* CTA button */
.main-slider-section .slider-cta {
    background-color: #00a6aa;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    display: inline-block;
}

.main-slider-section .slider-cta:hover {
    background-color: #051e44;
    text-decoration: none;
}

/* Keep an accessible fallback image hidden for screen readers */
.main-slider-section .carousel-item img.d-none {
    display: none !important;
}

/* Carousel Controls */
.main-slider-section .carousel-control-prev,
.main-slider-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 166, 170, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.main-slider-section .carousel:hover .carousel-control-prev,
.main-slider-section .carousel:hover .carousel-control-next {
    opacity: 1;
}

.main-slider-section .carousel-control-prev {
    left: 20px;
}

.main-slider-section .carousel-control-next {
    right: 20px;
}

.main-slider-section .carousel-control-prev:hover,
.main-slider-section .carousel-control-next:hover {
    background-color: rgba(5, 30, 68, 0.9);
}

.main-slider-section .carousel-control-prev-icon,
.main-slider-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.main-slider-section .carousel-indicators {
    margin-bottom: 20px;
}

.main-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #00a6aa;
    transition: all 0.3s ease;
}

.main-slider-section .carousel-indicators button.active {
    background-color: #00a6aa;
    width: 14px;
    height: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-slider-section {
        padding: 30px 0;
    }
    
    .main-slider-section .carousel-item {
        min-height: 420px;
    }
    
    .main-slider-section .carousel-control-prev,
    .main-slider-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .main-slider-section {
        padding: 20px 0;
    }
    
    .main-slider-section .carousel-item {
        min-height: 300px;
    }
    
    .main-slider-section .carousel {
        border-radius: 10px;
    }
    
    .main-slider-section .carousel-inner {
        border-radius: 10px;
    }
    
    .main-slider-section .carousel-control-prev,
    .main-slider-section .carousel-control-next {
        width: 35px;
        height: 35px;
        opacity: 1;
    }
    
    .main-slider-section .carousel-control-prev {
        left: 10px;
    }
    
    .main-slider-section .carousel-control-next {
        right: 10px;
    }

    .main-slider-section .slider-title {
        font-size: 18px;
    }
    .main-slider-section .slider-caption {
        padding: 40px 5px;
    }
}

@media (max-width: 575px) {
    .main-slider-section .carousel-item {
        min-height: 220px;
    }
    
    .main-slider-section .carousel-indicators {
        margin-bottom: 15px;
    }
    
    .main-slider-section .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .main-slider-section .carousel-indicators button.active {
        width: 12px;
        height: 12px;
    }
}






/* Featured Coupons Section Styles */
.featured-coupons-section {
    padding: 60px 0;
    background-color: #fff;
}

.featured-coupons-section .section-header {
    margin-bottom: 50px;
}

.featured-coupons-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 10px;
}

.featured-coupons-section .section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Coupon Card Styles */
.coupon-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 166, 170, 0.15);
}

.coupon-image-wrapper {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.coupon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.coupon-card:hover .coupon-image {
    transform: scale(1.05);
}

.coupon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.coupon-badge.badge-active {
    background-color: #28a745;
    color: #fff;
}

.coupon-badge.badge-expired {
    background-color: #dc3545;
    color: #fff;
}

.coupon-content {
    padding: 5px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coupon-title {
    font-size: 18px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 3px;
    line-height: 1.3;
}

.coupon-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    flex-grow: 1;
    line-height: 1.5;
}

/* Coupon Button with Code Preview */
.coupon-btn {
    position: relative;
    width: 100%;
    background-color: #00a6aa;
    color: #fff;
    border: 2px dashed #fff;
    padding: 6px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.coupon-btn::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
}

.coupon-btn::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
}

.coupon-btn:hover {
    background-color: #051e44;
    transform: scale(1.02);
}

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

.coupon-code-preview {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
}

/* Coupon Modal Styles */
.coupon-modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.coupon-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 1;
    width: 32px;
    height: 32px;
}

.coupon-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.coupon-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.coupon-modal-header {
    margin-bottom: 25px;
}

.coupon-modal-discount {
    font-size: 28px;
    font-weight: 700;
    color: #051e44;
    margin: 0;
}

.coupon-modal-store {
    margin-bottom: 30px;
}

.store-logo-placeholder {
    width: 100px;
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    font-weight: 700;
    color: #051e44;
    border: 2px solid #e0e0e0;
}

.store-full-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.coupon-code-box {
    margin: 30px 0;
}

.coupon-code-display {
    background: linear-gradient(135deg, #00a6aa 0%, #051e44 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-code-display:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 166, 170, 0.3);
}

.coupon-code-display::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
}

.coupon-code-display::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
}

.code-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    display: block;
}

.code-instruction {
    margin-top: 12px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.coupon-feedback {
    margin: 25px 0;
}

.feedback-question {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.feedback-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.feedback-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feedback-btn.feedback-yes {
    color: #28a745;
}

.feedback-btn.feedback-no {
    color: #dc3545;
}

.feedback-btn:hover {
    transform: scale(1.1);
}

.feedback-btn.feedback-yes:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.feedback-btn.feedback-no:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.coupon-usage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
}

.coupon-usage i {
    color: #999;
}

.coupon-link-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.see-all-coupons {
    color: #00a6aa;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.see-all-coupons:hover {
    color: #051e44;
    text-decoration: underline;
}

/* Copied Notification */
.copied-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: 600;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-coupons-section {
        padding: 40px 0;
    }
    
    .featured-coupons-section .section-title {
        font-size: 30px;
    }
    
    .featured-coupons-section .section-header {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .featured-coupons-section {
        padding: 30px 0;
    }
    
    .featured-coupons-section .section-title {
        font-size: 26px;
    }
    
    .coupon-modal-body {
        padding: 30px 20px;
    }
    
    .coupon-modal-discount {
        font-size: 22px;
    }
    
    .code-text {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .store-logo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .coupon-image-wrapper {
        height: 100px;
    }
    
    .coupon-title {
        font-size: 13px;
    }
    
    .coupon-description {
        font-size: 12px;
    }
    
    .coupon-btn {
        padding: 6px 16px;
        font-size: 9px;
    }
    .coupon-code-preview {
        padding: 3px 8px;
        font-size: 10px;
    }
    .coupon-content {
        padding: 5px 6px;
    }
}



/* Featured Products Section Styles */
.featured-products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.featured-products-section .products-section-header {
    margin-bottom: 50px;
}

.featured-products-section .products-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 10px;
}

.featured-products-section .products-section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Product Card Styles */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 166, 170, 0.2);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 30, 68, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: #fff;
    color: #00a6aa;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background-color: #00a6aa;
    color: #fff;
}

/* Product Info */
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 48px;
}

.product-price {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #00a6aa;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-short-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Product Button */
.product-btn {
    display: inline-block;
    width: 100%;
    background-color: #051e44;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #051e44;
}

.product-btn:hover {
    background-color: #00a6aa;
    border-color: #00a6aa;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 170, 0.3);
}

/* View All Products Button */
.view-all-products-btn {
    display: inline-block;
    background-color: #00a6aa;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #00a6aa;
}

.view-all-products-btn:hover {
    background-color: #051e44;
    border-color: #051e44;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 166, 170, 0.3);
}

/* About Us Section */
.about-us-section {
    padding: 60px 0;
    background: #fff;
}
.about-image img {
    border-radius: 6px;
    display: block;
    width: 100%;
    height: auto;
}
.about-content {
    padding: 10px 20px;
}
.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 12px;
}
.about-text {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}
.about-cta {
    background: #00a6aa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}
.about-cta:hover { background: #051e44; }

/* Contact form specifics */
.contact-form .form-label { font-weight: 600; color: #051e44; }
.contact-form .form-control { border-radius: 8px; border: 1px solid #e6e6e6; }
.contact-feedback { color: #8fe0df; font-size: 14px; }

/* Submit Coupon form (reuses contact form look) */
.submit-form .form-label { font-weight: 600; color: #051e44; }
.submit-form .form-control { border-radius: 8px; border: 1px solid #e6e6e6; }
.submit-feedback { color: #8fe0df; font-size: 14px; }

@media (max-width: 767px) {
    .about-title { font-size: 22px; }
    .about-image img { max-height: 320px; object-fit: cover; }
}

/* Sale Badge (Optional - you can add this to products on sale) */
.product-sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* New Badge (Optional - you can add this to new products) */
.product-new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-products-section {
        padding: 40px 0;
    }
    
    .featured-products-section .products-section-title {
        font-size: 30px;
    }
    
    .featured-products-section .products-section-header {
        margin-bottom: 35px;
    }
    
    .product-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .featured-products-section {
        padding: 30px 0;
    }
    
    .featured-products-section .products-section-title {
        font-size: 26px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-name {
        font-size: 16px;
        min-height: auto;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .original-price {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-short-desc {
        font-size: 13px;
    }
    
    .product-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .view-all-products-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}




/* FAQs Section Styles */
.faqs-section {
    position: relative;
    padding: 80px 0;
}

.faqs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.faqs-section .container {
    position: relative;
    z-index: 2;
}

/* FAQs Header */
.faqs-header {
    margin-bottom: 50px;
}

.faqs-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.faqs-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* FAQs Wrapper */
.faqs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Accordion Item */
.faq-item {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 166, 170, 0.2);
}

/* FAQ Question Button */
.faq-question {
    background-color: transparent;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #051e44;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.faq-question:not(.collapsed) {
    background-color: #00a6aa;
    color: #fff;
}

.faq-question:focus {
    box-shadow: none;
    border: none;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: 400;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed)::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background-color: #00a6aa;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.faq-question:not(.collapsed) .faq-number {
    background-color: rgba(255, 255, 255, 0.2);
}

/* FAQ Answer */
.faq-answer {
    padding: 20px 20px 30px 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    background-color: rgba(255, 255, 255, 0.95);
}

/* FAQs CTA Section */
.faqs-cta {
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.faqs-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.faqs-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.faqs-contact-btn {
    display: inline-block;
    background-color: #00a6aa;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #00a6aa;
}

.faqs-contact-btn:hover {
    background-color: #fff;
    color: #00a6aa;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .faqs-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .faqs-title {
        font-size: 34px;
    }
    
    .faqs-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 15px 25px 25px 70px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .faqs-section {
        padding: 40px 0;
    }
    
    .faqs-header {
        margin-bottom: 35px;
    }
    
    .faqs-title {
        font-size: 28px;
    }
    
    .faqs-subtitle {
        font-size: 15px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
        gap: 10px;
    }
    
    .faq-number {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 15px 20px 20px 20px;
        font-size: 14px;
    }
    
    .faq-question::after {
        font-size: 24px;
    }
    
    .faqs-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .faqs-cta-title {
        font-size: 22px;
    }
    
    .faqs-cta-text {
        font-size: 14px;
    }
    
    .faqs-contact-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .faq-number {
        min-width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .faq-answer {
        padding: 12px 15px 18px 15px;
        font-size: 13px;
        line-height: 1.6;
    }
}




/* Featured Stores Section Styles */
.featured-stores-section {
    padding: 60px 0;
    background-color: #fff;
}

.featured-stores-section .stores-section-header {
    margin-bottom: 50px;
}

.featured-stores-section .stores-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 10px;
}

.featured-stores-section .stores-section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Stores Slider Wrapper */
.stores-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Store Card Styles */
.store-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 280px;
    position: relative;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 166, 170, 0.2);
}

.store-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.store-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #f8f9fa;
}

.store-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Store Info Overlay */
.store-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 30, 68, 0.95), rgba(5, 30, 68, 0.7));
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.store-card:hover .store-info-overlay {
    transform: translateY(0);
}

.store-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.store-offers {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.store-view-btn {
    display: inline-block;
    background-color: #00a6aa;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.store-card:hover .store-view-btn {
    background-color: #fff;
    color: #00a6aa;
}

/* Carousel Controls for Stores */
.stores-control-prev,
.stores-control-next {
    width: 45px;
    height: 45px;
    background-color: #00a6aa;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.stores-control-prev {
    left: 0;
}

.stores-control-next {
    right: 0;
}

.stores-control-prev:hover,
.stores-control-next:hover {
    background-color: #051e44;
}

.stores-carousel-icon {
    width: 18px;
    height: 18px;
}

/* View All Stores Button */
.view-all-stores-btn {
    display: inline-block;
    background-color: #00a6aa;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #00a6aa;
}

.view-all-stores-btn:hover {
    background-color: #051e44;
    border-color: #051e44;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 166, 170, 0.3);
}

/* Alphabet navigation for stores listing */
.alphabet-nav {
    padding: 20px 0 10px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.alphabet-nav .alpha-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.btn-alpha {
    display: inline-block;
    min-width: 40px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #051e44;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}
.btn-alpha:hover {
    background: #00a6aa;
    color: #fff;
    border-color: #00a6aa;
}
.btn-alpha.active {
    background: #00a6aa;
    color: #fff;
    border-color: #00a6aa;
}

/* Per-letter sections */
.store-letter-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #f6f6f6;
}
.store-letter-heading {
    font-size: 28px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 18px;
}
.no-stores {
    color: #888;
    margin-bottom: 18px;
}

/* Grid card styles (matching site look) */
.store-grid-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.store-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,166,170,0.12);
}
.store-grid-image-container {
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}
.store-grid-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
.store-grid-info-overlay {
    padding: 16px 18px 26px;
    text-align: center;
}
.store-grid-name {
    font-weight: 700;
    color: #051e44;
    margin-bottom: 6px;
}
.store-grid-offers {
    color: #666;
    margin-bottom: 10px;
}
.store-grid-view-btn {
    display: inline-block;
    background: #00a6aa;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}

/* Responsive tweaks for alphabet nav and sections */
@media (max-width: 767px) {
    .btn-alpha { padding: 6px 10px; min-width: 34px; }
    .store-letter-heading { font-size: 22px; }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-stores-section {
        padding: 40px 0;
    }
    
    .featured-stores-section .stores-section-title {
        font-size: 30px;
    }
    
    .featured-stores-section .stores-section-header {
        margin-bottom: 35px;
    }
    
    .stores-slider-wrapper {
        padding: 0 40px;
    }
    
    .store-card {
        height: 240px;
    }
    
    .stores-control-prev,
    .stores-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .featured-stores-section {
        padding: 30px 0;
    }
    
    .featured-stores-section .stores-section-title {
        font-size: 26px;
    }
    
    .stores-slider-wrapper {
        padding: 0 35px;
    }
    
    .store-card {
        height: 220px;
    }
    
    .store-image-container {
        padding: 20px;
    }
    
    .store-info-overlay {
        padding: 20px 15px;
    }
    
    .store-name {
        font-size: 18px;
    }
    
    .store-offers {
        font-size: 13px;
    }
    
    .store-view-btn {
        font-size: 12px;
        padding: 7px 18px;
    }
    
    .stores-control-prev,
    .stores-control-next {
        width: 35px;
        height: 35px;
    }
    
    .stores-carousel-icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 575px) {
    .stores-slider-wrapper {
        padding: 0 30px;
    }
    
    .store-card {
        height: 200px;
    }
    
    .store-image-container {
        padding: 15px;
    }
    
    .store-info-overlay {
        padding: 15px;
    }
    
    .store-name {
        font-size: 16px;
    }
    
    .view-all-stores-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}



/* Blogs Section Styles */
.blogs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.blogs-section .blogs-section-header {
    margin-bottom: 50px;
}

.blogs-section .blogs-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 10px;
}

.blogs-section .blogs-section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 166, 170, 0.2);
}

/* Blog Image */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.blog-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

/* Blog Category Badge */
.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00a6aa;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Blog Content */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i,
.blog-author i {
    color: #00a6aa;
    font-size: 12px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #051e44;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 56px;
}

.blog-title a {
    color: #051e44;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #00a6aa;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Blog Read More Link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a6aa;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #051e44;
    gap: 12px;
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* View All Blogs Button */
.view-all-blogs-btn {
    display: inline-block;
    background-color: #00a6aa;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #00a6aa;
}

.view-all-blogs-btn:hover {
    background-color: #051e44;
    border-color: #051e44;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 166, 170, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blogs-section {
        padding: 40px 0;
    }
    
    .blogs-section .blogs-section-title {
        font-size: 30px;
    }
    
    .blogs-section .blogs-section-header {
        margin-bottom: 35px;
    }
    
    .blog-image-wrapper {
        height: 220px;
    }
    
    .blog-title {
        font-size: 18px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .blogs-section {
        padding: 30px 0;
    }
    
    .blogs-section .blogs-section-title {
        font-size: 26px;
    }
    
    .blog-image-wrapper {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .blog-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .blog-meta {
        font-size: 12px;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .blog-image-wrapper {
        height: 110px;
    }
    
    .blog-content {
        padding: 4px;
    }
    
    .blog-title {
        font-size: 12px;
        line-height: 1.1;
    }
    
    .blog-excerpt {
        font-size: 10px;
        line-height: 1.4;
        height: 40px;
        overflow-y: auto;
    }
    
    .blog-read-more {
        font-size: 13px;
    }
    
    .view-all-blogs-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .blog-category-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
}





/* Footer Section Styles */
.main-footer {
    background-color: #051e44;
    padding: 40px 0;
    margin-top: 0;
}

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

/* Footer Logo */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #00a6aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo a:hover {
    color: #fff;
}

/* Footer Navigation */
.footer-navigation {
    margin-bottom: 25px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.footer-menu li {
    display: inline-block;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-menu li a:hover {
    color: #00a6aa;
}

.footer-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00a6aa;
    transition: width 0.3s ease;
}

.footer-menu li a:hover::after {
    width: 100%;
}

/* Footer Copyright */
.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.footer-copyright a {
    color: #00a6aa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Newsletter styles */
.footer-newsletter {
    margin: 26px 0 18px;
}
.newsletter-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.newsletter-form .input-group {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-input.is-invalid { box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08); border-color: #ff8b8b; }
.newsletter-btn { padding: 10px 18px; border-radius: 28px; background: #00a6aa; color: #fff; border: none; font-weight: 700; }
.newsletter-btn:hover { background: #051e44; }
.newsletter-feedback { margin-top: 8px; color: #8fe0df; font-size: 14px; min-height: 18px; text-align: center; }

/* Social icons in footer */
.footer-social { margin: 14px 0 8px; }
.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-social .social-link i { font-size: 16px; }
.footer-social .social-link:hover { transform: translateY(-4px); background: #00a6aa; color: #fff; box-shadow: 0 6px 18px rgba(0,166,170,0.16); }

/* Responsive tweaks */
@media (max-width: 575px) {
    .newsletter-form .input-group { flex-direction: column; gap: 10px; }
    .newsletter-btn { width: 100%; }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .main-footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-logo a {
        font-size: 24px;
    }
    
    .footer-navigation {
        margin-bottom: 20px;
    }
    
    .footer-menu {
        gap: 8px 20px;
    }
    
    .footer-menu li a {
        font-size: 14px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .main-footer {
        padding: 25px 0;
    }
    
    .footer-logo a {
        font-size: 22px;
    }
    
    .footer-menu {
        gap: 6px 15px;
    }
    
    .footer-menu li a {
        font-size: 13px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}



.breadcsec {
    background-color: #051e44;
    padding: 65px 0;
}

.breadcsec h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}



/* Stores Grid Section Styles */
.stores-grid-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Store Grid Card Styles */
.store-grid-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 180px;
    position: relative;
}

.store-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 166, 170, 0.2);
}

.store-grid-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.store-grid-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    background-color: #f8f9fa;
}

.store-grid-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-grid-card:hover .store-grid-logo {
    transform: scale(1.05);
}

/* Store Grid Info Overlay */
.store-grid-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 30, 68, 0.95), rgba(5, 30, 68, 0.7));
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.store-grid-card:hover .store-grid-info-overlay {
    transform: translateY(0);
}

.store-grid-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.store-grid-offers {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.store-grid-view-btn {
    display: inline-block;
    background-color: #00a6aa;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.store-grid-card:hover .store-grid-view-btn {
    background-color: #fff;
    color: #00a6aa;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .stores-grid-section {
        padding: 40px 0;
    }
    
    .store-grid-card {
        height: 240px;
    }
    
    .store-grid-image-container {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .stores-grid-section {
        padding: 30px 0;
    }
    
    .store-grid-card {
        height: 220px;
    }
    
    .store-grid-image-container {
        padding: 20px;
    }
    
    .store-grid-info-overlay {
        padding: 20px 15px;
    }
    
    .store-grid-name {
        font-size: 18px;
    }
    
    .store-grid-offers {
        font-size: 13px;
    }
    
    .store-grid-view-btn {
        font-size: 12px;
        padding: 7px 18px;
    }
}

@media (max-width: 575px) {
    .store-grid-card {
        height: 200px;
    }
    
    .store-grid-image-container {
        padding: 15px;
    }
    
    .store-grid-info-overlay {
        padding: 15px;
    }
    
    .store-grid-name {
        font-size: 16px;
    }
}





.store-detail-header {
    background-color: #f8f9fa;
}

.store-detail-logo-wrapper {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.store-detail-logo {
    max-width: 200px;
    height: auto;
}

.store-detail-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.store-detail-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.store-detail-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-stat-badge {
    background-color: #00a6aa;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.store-faqs-section {
    background-color: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: #00a6aa;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 166, 170, 0.25);
}

.coupon-code-display input {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px dashed #00a6aa;
    padding: 15px;
}

.modal-store-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.modal-discount {
    font-size: 1.5rem;
    color: #00a6aa;
}

.modal-used-count {
    font-size: 0.9rem;
    color: #666;
}

.badge-active {
    background-color: #28a745;
}

.badge-inactive {
    background-color: #6c757d;
}

@media only screen and (max-width: 500px) {
    .newsletter-input {
        width: 100%!important;
    }
}

.blog-detail-content a {
    color: #000 !important;
    text-decoration: underline !important;
    border-radius: 80px;
}

.blog-detail-content a::after {
    content: "↗";
    font-size: 0.9em;
}

.blog-detail-content a:hover {
    color: #00a6aa!important;
}