:root {
    --white: #ffffff;
    --primary-light: #06a79f;
    --primary: #105e72;
    --primary-dark: #008687;
    --dark-amethyst: #102c51;
    --font-family: "Archivo", Helvetica, sans-serif;
    --heading-font-family: "Aleo", "Times New Roman", serif;
    --gradient-start: #13547a;
    --gradient-end: #80d0c7;
    --light-bg: #F8FAFC;
    --border-color: #e0e0e0;
    --light-text: #64748B;
    --season-theme-color: #BC1719;
    --season-theme-bg-color: #FFE2E2;
    --icon-gradient: linear-gradient(135deg, rgba(228, 27, 35, 0.1) 0%, rgba(1, 33, 105, 0.1) 100%);
}

body {
    font-family: var(--font-family);
    padding-top: 63px;
    background-color: var(--white);
    min-height: 100vh;
    position: relative;
}

a {
    text-decoration: none;
}

.section-titleh3{
    text-align: center;
    font-size: 22px;
    color: #008687;
}
.hero-section {
    background: linear-gradient(135deg, #13547a 0%, #13547a 100%);
    background-size: cover;
    background-position: center;
    padding: 30px 0;
    color: white;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-section .lead {
    opacity: 0.9;
    margin-bottom: 32px;

}

.search-new-div{
     max-height: 300px;   /* set as needed */
    overflow-y: auto;
}

.last-updated {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9rem;
}

/* Animated Background Container */
.animated-coupon-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    /* background: linear-gradient(135deg,
            rgba(248, 249, 255, 0.9) 0%,
            rgba(240, 242, 255, 0.9) 100%); */
}

/* Animated Discount Tags */
.discount-tag {
    position: absolute;
    color: rgba(89, 46, 131, 0.15);
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Archivo', sans-serif;
    user-select: none;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(89, 46, 131, 0.1);
    animation: floatAround 20s infinite linear;
}

/* Different discount values with different animations */
.tag-1 {
    font-size: 5.5rem;
    color: rgba(153, 132, 212, 0);
    top: 10%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.tag-2 {
    font-size: 4rem;
    color: rgba(89, 46, 131, 0);
    top: 20%;
    right: 40%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.tag-3 {
    font-size: 6rem;
    color: rgba(153, 132, 212, 0.1);
    top: 40%;
    left: 12%;
    animation-duration: 30s;
    animation-delay: 4s;
}

.tag-4 {
    font-size: 3.5rem;
    color: rgba(89, 46, 131, 0);
    top: 60%;
    right: 35%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.tag-5 {
    font-size: 4.5rem;
    color: rgba(153, 132, 212, 0);
    top: 75%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: 3s;
}

.tag-6 {
    font-size: 5rem;
    color: rgba(89, 46, 131, 0);
    top: 30%;
    left: 50%;
    animation-duration: 24s;
    animation-delay: 5s;
}

.tag-7 {
    font-size: 3rem;
    color: rgba(153, 132, 212, 0);
    top: 80%;
    right: 25%;
    animation-duration: 20s;
    animation-delay: 6s;
}

.tag-8 {
    font-size: 4.8rem;
    color: rgba(89, 46, 131, 0);
    top: 15%;
    left: 60%;
    animation-duration: 26s;
    animation-delay: 7s;
}

.tag-9 {
    font-size: 3.8rem;
    color: rgba(153, 132, 212, 0);
    top: 65%;
    left: 5%;
    animation-duration: 32s;
    animation-delay: 8s;
}

.tag-10 {
    font-size: 5.2rem;
    color: rgba(89, 46, 131, 0);
    top: 45%;
    right: 5%;
    animation-duration: 19s;
    animation-delay: 9s;
}

.tag-11 {
    font-size: 4.2rem;
    color: rgba(153, 132, 212, 0.0);
    top: 85%;
    left: 75%;
    animation-duration: 27s;
    animation-delay: 10s;
}

.tag-12 {
    font-size: 3.2rem;
    color: rgba(89, 46, 131, 0.0);
    top: 25%;
    left: 85%;
    animation-duration: 23s;
    animation-delay: 11s;
}

/* Floating Animation */
@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(50px, -30px) rotate(90deg) scale(1.05);
        opacity: 0.4;
    }

    50% {
        transform: translate(-30px, 40px) rotate(180deg) scale(1.1);
        opacity: 0.5;
    }

    75% {
        transform: translate(40px, -20px) rotate(270deg) scale(1.05);
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Subtle Pulse Effect */
@keyframes subtlePulse {

    0%,
    100% {
        filter: blur(0px);
        opacity: 0.3;
    }

    50% {
        filter: blur(1px);
        opacity: 0.5;
    }
}

.discount-tag {
    animation: floatAround 20s infinite linear, subtlePulse 4s infinite ease-in-out;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.section-title {
    font-family: var(--heading-font-family) !important;
}

.custom-navbar {
    
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(21, 1, 50, 0.15);
    transition: all 0.3s ease;
    background-image: linear-gradient(15deg, #00446c 0%, #80d0c7 100%);
}

.custom-navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(21, 1, 50, 0.99);
    transition: 0.3s all ease;
}

.custom-navbar.scrolled .navbar-brand #navbrand {
    color: var(--primary);
    animation: flash 5s linear infinite;
}

@keyframes flash {
    0% {
        color: var(--primary);
    }

    50% {
        color: var(--primary-light);
    }

    100% {
        color: var(--primary);
    }
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: var(--heading-font-family);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

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

.navbar-brand span {
    color: var(--primary-light);
}

.navbar-brand:hover {
    color: var(--primary-light) !important;
}

.navbar-brand:hover span {
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: rgb(9 161 141 / 30%);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
    left: 15%;
}

.navbar-toggler {
    border: 1px solid var(--primary-light);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(112, 192, 182, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28254, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-region {
        display: none;
    }
    .navbar-li-region{
        display:block;
    }
}

@media (max-width: 600px) {
    .navbar-expand-lg .navbar-region {
        display: block;
    }
    .navbar-li-region{
        display:none;
    }
}

.region-select .dropdown.switch-region.position-above.mobile {
    margin-bottom: .75rem;
    margin-left: -70px;
    margin-top: 20px;
}

/* Search Container Styles */
.search-container {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-icon-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon-btn:hover {
    background-color: rgba(153, 132, 212, 0.2);
    color: var(--primary-light);
}

.search-bar {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0;
    border-radius: 20px;
    height: 40px;
}

.search-bar.active {
    width: 300px;
    opacity: 1;
    padding: 0 1rem;
    margin-right: 10px;
}

.search-bar:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(153, 132, 212, 0.3);
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(89, 46, 131, 0.3);
}

.btn-primary:active {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 8px rgba(89, 46, 131, 0.3) !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: .5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-primary-custom:active {
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(158, 98, 255, 0.3) !important;
}

.dropdown-menu {
    background-color: var(--dark-amethyst);
    border: 1px solid var(--primary-light);
    border-radius: 4px;
}

.dropdown-item {
    color: var(--white);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary);
    color: var(--white);
}

.dropdown-divider {
    border-color: rgba(153, 132, 212, 0.3);
}

.hero-section {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-section h1{
    font-size:2.8rem;
} 

.hero-section h2{
    font-size:1.7rem;
} 

.hero-section p{
    font-size:1rem;
    text-align: center;
    padding: 0px 80px;
} 

.hero-section span{
    font-size:1rem;
    text-align: center;
    padding: 0px 80px;
} 

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.hero-img {
    width: 100%;
    height: auto;
    /* sabse important */
    display: block;
    /* unwanted gap remove */
    object-fit: cover;
}

/* .content-section {
    padding: 2rem 0rem;
    margin-bottom: 3rem;
} */

.site-footer {
    background-color : #13547a;
    color: #ffffff;
    padding: 80px 20px 40px;
    width: 100%;
}

.footer-overlay {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top 5 Columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc !important;
    font-weight: 500;
    font-size: 13px;
    padding: 0.2rem;
    margin: 0 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-col h2 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 22px;
    padding: 0.5rem 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover::after {
    width: 70%;
    left: 15%;
}

/* Socials Divider */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-socials .line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
}

/* Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 160px;
}

/* Copyright */
.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #cccccc;
}

/* coupons section */
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, var(--dark-amethyst) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-align: center;
    position: relative;
       
}
.featured-section .section-title{
     margin-bottom: 35px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    width: 100%;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    bottom: -10px;
    left: 27%;
    transform: translateX(-50%);
    animation: fadeIn 1s linear forwards;
}

@keyframes fadeIn {
    0% {
        width: 0px;
    }

    100% {
        width: 600px;
    }
}

/* Unique Coupon Cards Row */
.coupons-row {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

/* Coupon Card - Unique Minimal Design */
.unique-coupon-card {
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
}

.unique-coupon-card:hover {
    box-shadow: 0 15px 30px rgba(89, 46, 131, 0.1);
    border-color: rgba(153, 132, 212, 0.3);
}

/* Top Strip with % OFF */
.coupon-strip {
    background: linear-gradient(90deg, rgba(153, 132, 212, 0.1) 0%, rgba(89, 46, 131, 0.05) 100%);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(153, 132, 212, 0.15);
    position: relative;
    text-align: center;
}

.coupon-title {
    font-weight: 600;
    color: var(--dark-amethyst);
    margin-bottom: 4px;
}

.coupon-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Content Area */
.coupon-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coupon-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
    font-weight: 500;
}

/* Card styling for images */
.image-container {
    min-height: 100px;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 100px;
    object-fit: scale-down;
    transition: transform 0.5s ease;
}

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

/* Bottom Section */
.coupon-bottom {
    padding: 15px 20px;
    background: rgba(153, 132, 212, 0.03);
    border-top: 1px solid rgba(153, 132, 212, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expiry {
    color: #777;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    gap: 5px;
        font-weight: 900;
}

.expiry i {
    color: var(--primary-light);
}

.claim-btn {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 7px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-btn:hover {
    background: var(--primary);
    color: var(--white);
}

section {
    margin-bottom: 5rem;
}

/* carousel section */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Modern Carousel */
.modern-carousel {
    /* background: var(--white); */
    padding: 0px 40px 60px 40px;
    height: 450px;
    position: relative;
    overflow: hidden;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Carousel Slide */
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Slide Content - Split Layout */

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

.slide-content {
    display: flex;
    width: 100%;
    min-height: 300px;
    align-items: center;
    gap: 60px;
}

.image-content {
    flex: 1;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.image-content:hover .slide-image {
    transform: scale(1.05);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 93%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 0.8rem;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(153, 132, 212, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 40px;
    right: 40px;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.9rem;
    background: rgba(153, 132, 212, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

/* featured brands */

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--icon-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--primary-dark);
    border-radius: 50%;
}

/* Features Grid */
.feature-item {
    padding: 40px 30px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-item h4 {
    color: var(--primary-dark);
}

.feature-item p {
    color: #666;
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.brands-wrapper {
    width: 100%;
    margin: 0 auto;
}

.brands-wrapper-header {
    width: 100%;
    max-width: 1320px;
}

.brands-wrapper-header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Owl Carousel Container */
.brands-carousel-container {
    position: relative;
    padding: 30px 0;
}

/* Custom Navigation Arrows */
.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
    pointer-events: none;
}

.custom-nav button {
    pointer-events: all;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(153, 132, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary);
    font-size: 1.3rem;
}

.custom-nav button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(89, 46, 131, 0.2);
}

/* Owl Carousel Customization */
.owl-carousel {
    position: relative;
}

.owl-stage {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

/* Brand Card - Unique Design */
.brand-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    margin: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo Container */
.brand-logo-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    transition: all 0.4s ease;
}

/* Brand Rating */
.brand-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-star {
    color: #ffc107;
    font-size: 1rem;
}

.rating-value {
    color: var(--dark-amethyst);
    font-weight: 600;
    margin-left: 5px;
}

/* Explore Button */
.explore-btn {
    background: transparent;
    border: 2px solid rgba(153, 132, 212, 0.3);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.explore-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(89, 46, 131, 0.2);
}

/* Dots Customization */
.owl-dots {
    margin-top: 20px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(153, 132, 212, 0.3) !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--primary-dark) !important;
    transform: scale(1.3);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(89, 46, 131, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(89, 46, 131, 0.3);
}

.rectangle-carousel {
    position: relative;
    padding: 10px 0;
}

.carousel-track-brands {
    display: flex;
    gap: 16px;
    animation: scroll 35s linear infinite;
    width: max-content;
}

.carousel-container:hover .carousel-track-brands {
    animation-play-state: paused;
}

.brands-wrapper .brand-logo-item {
    width: 220px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-wrapper .logo-rectangle {
    max-width: 100%;
    max-height: 100%;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding: 0px;
}

.brands-wrapper .logo-rectangle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brands-wrapper .logo-rectangle:hover {
    background: none !important;
}

.brands-wrapper .logo-rectangle:hover::before {
    opacity: 1;
}

.brands-wrapper .brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.4s ease;
    width: 200px;
    height: 100px;
}

.brands-wrapper .logo-rectangle:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 12 - 30px * 12));
    }
}

/* Gradient Fade Edges */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Navigation Dots */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(153, 132, 212, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Store Section */
.store-wrapper {
    width: 100%;
}

/* Categories Grid - 5 Columns */
.store-wrapper .categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Category Card */
.store-wrapper .category-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(153, 132, 212, 0.1);
}

/* Category Header */
.store-wrapper .category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(153, 132, 212, 0.1);
}

.store-wrapper .category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.store-wrapper .category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-amethyst);
}

/* Brands List - 10 Brands */
.store-wrapper .brands-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-wrapper .brand-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-wrapper .brand-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: rgba(153, 132, 212, 0.05);
}

/* Brand Logo - Circle */
.store-wrapper .brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(153, 132, 212, 0.2);
    background: white;
}

.store-wrapper .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Brand Info */
.store-wrapper .brand-info {
    flex: 1;
    min-width: 0;
    /* For text truncation */
}

.store-wrapper .brand-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-amethyst);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-wrapper .store-link {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.store-wrapper .brand-item:hover .store-link {
    color: var(--primary-dark);
}

.shop-wrapper {
    width: 100%;
}

.shop-wrapper .accordions-container {
    background: white;
    padding: 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(153, 132, 212, 0.1);
}

/* Accordion Item */
.shop-wrapper .accordion-item {
    border-bottom: 1px solid rgba(153, 132, 212, 0.2);
    overflow: hidden;
}

.shop-wrapper .accordion-item:last-child {
    border-bottom: none;
}

/* Accordion Header */
.shop-wrapper .accordion-header {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-wrapper .accordion-header:hover {
    background: rgba(153, 132, 212, 0.03);
}

.shop-wrapper .accordion-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-amethyst);
    line-height: 1;
    transition: color 0.3s ease;
    padding-right: 40px;
}

.shop-wrapper .accordion-header:hover .accordion-title {
    color: var(--primary);
}

.shop-wrapper .accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.shop-wrapper .accordion-icon span {
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.shop-wrapper .horizontal {
    width: 20px;
    height: 2px;
    left: 2px;
    top: 11px;
}

.shop-wrapper .vertical {
    width: 2px;
    height: 20px;
    left: 11px;
    top: 2px;
    transform: rotate(0deg);
}

.shop-wrapper .accordion-item.active .vertical {
    transform: rotate(90deg);
}

.shop-wrapper .accordion-item.active .horizontal {
    background: var(--primary-dark);
}

.shop-wrapper .accordion-item.active .accordion-title {
    color: var(--primary);
}

/* Accordion Content */
.shop-wrapper .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accordion Content */
.shop-wrapper .accordion-content .category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-amethyst);
    line-height: 1;
    transition: color 0.3s ease;
    padding-left: 10px;
    padding-top: 20px;
}

.shop-wrapper .accordion-body {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Blogs Section */
.blog-wrapper {
    width: 100%;
    max-width: 1400px;
    position: relative;
}

/* Animated Background */
.coupon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.coupon-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(153, 132, 212, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(89, 46, 131, 0.15);
    animation: floatTag 20s infinite linear;
    z-index: 1;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-tag-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.coupon-tag-2 {
    top: 40%;
    left: 3%;
    animation-delay: 5s;
}

.coupon-tag-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 10s;
}

.coupon-tag-4 {
    bottom: 10%;
    left: 10%;
    animation-delay: 15s;
}

/* Header */
.blog-header {
    text-align: center;
    position: relative;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(89, 46, 131, 0.3);
    animation: badgeGlow 2s infinite;
    position: relative;
    overflow: hidden;
}

.header-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* Categories Filter */
.categories-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 28px;
    border-radius: 12px;
    border: 2px solid rgba(153, 132, 212, 0.2);
    background: white;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(89, 46, 131, 0.3);
}

.category-btn:hover:not(.active) {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Two Column Layout */
.blog-columns {
    display: flex;
    gap: 40px;
}

/* Left Column - Featured Blogs */
.featured-blogs {
    flex: 1;
}

.featured-blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(72, 62, 100, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 40px;
}

.featured-blog-card:hover {
    box-shadow: 0 25px 60px rgba(89, 46, 131, 0.15);
    border-color: rgba(153, 132, 212, 0.3);
}

.featured-blog-image {
    max-height: 280px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.featured-blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-blog-content {
    padding: 35px;
}

.featured-blog-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-amethyst);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-blog-excerpt {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(153, 132, 212, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 15px rgba(153, 132, 212, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-amethyst);
}

.blog-date {
    font-size: 0.9rem;
    color: #999;
}

.blog-stats {
    display: flex;
    gap: 25px;
}

.blog-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-blog-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(89, 46, 131, 0.3);
    position: relative;
    overflow: hidden;
}

.read-blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.read-blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(89, 46, 131, 0.4);
}

.read-blog-btn:hover::before {
    left: 100%;
}

/* Right Column - Articles & Tips */
.articles-sidebar {
    flex: 1;
}

/* Sidebar */
.sidebar-card {
    background-color: var(--white);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(89, 46, 131, 0.15);
    border-top: 5px solid var(--primary);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(153, 132, 212, 0.2);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-amethyst);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    bottom: -23px;
    left: 0;
    border-radius: 2px;
}

.trending-item {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.trending-item:last-child {
    border-bottom: none;
}


.trending-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.trending-title:hover {
    color: var(--primary);
}

.sidebar-count {
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(153, 132, 212, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* Articles List */
.articles-list {
    display: flex;
    gap: 25px;
}

.article-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(153, 132, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.article-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(153, 132, 212, 0.3);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.article-card:hover::before {
    transform: scaleY(1);
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(153, 132, 212, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    letter-spacing: 0.5px;
}

.article-time {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-amethyst);
    margin-bottom: 12px;
    line-height: 1.4;
  text-align: center;
}

.article-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-initial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

.author-name-small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-amethyst);
}

.article-actions {
    display: flex;
    gap: 20px;
}

.article-action {
    background: transparent;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-action:hover {
    color: var(--primary);
}

/* Tips Section */
.tips-section {
    background: linear-gradient(135deg, rgba(153, 132, 212, 0.1), rgba(89, 46, 131, 0.05));
    border-radius: 24px;
    padding: 35px;
    margin-top: 50px;
    border: 1px solid rgba(153, 132, 212, 0.2);
}

.tips-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-amethyst);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-title i {
    color: var(--primary);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(89, 46, 131, 0.2);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tip-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tip-content {
    flex: 1;
}

.tip-title {
    font-weight: 600;
    color: var(--dark-amethyst);
    margin-bottom: 5px;
    font-size: 1rem;
    font-family: var(--heading-font-family);
}

.tip-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animations */
@keyframes floatTag {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-15px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(30px, -15px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(89, 46, 131, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(89, 46, 131, 0.5);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animations */
.featured-blog-card {
    animation: slideIn 0.6s ease-out;
}

.article-card:nth-child(1) {
    animation: slideIn 0.6s ease-out 0.1s both;
}

.article-card:nth-child(2) {
    animation: slideIn 0.6s ease-out 0.2s both;
}

.article-card:nth-child(3) {
    animation: slideIn 0.6s ease-out 0.3s both;
}

.article-card:nth-child(4) {
    animation: slideIn 0.6s ease-out 0.4s both;
}

.article-card:nth-child(5) {
    animation: slideIn 0.6s ease-out 0.5s both;
}

.article-card:nth-child(6) {
    animation: slideIn 0.6s ease-out 0.6s both;
}

/* Newsletter Section */

.newsletter-wrapper {
    width: 100%;
    height: 230px;
    background: linear-gradient(to right, var(--gradient-start) 10%, var(--gradient-end) 60%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(122, 67, 211, 0.25);
}

/* Background Elements */
.newsletter-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.dot-1 {
    top: 30%;
    left: 10%;
}

.dot-2 {
    top: 60%;
    left: 15%;
}

.dot-3 {
    top: 20%;
    right: 20%;
}

.dot-4 {
    bottom: 25%;
    right: 10%;
}

/* Content */
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    position: relative;
    z-index: 2;
}

.text-content {
    flex: 1;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Email Form */
.email-form {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 400px;
}

.email-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.email-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background: white;
    color: var(--gradient-end);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* Message */
.subscription-message {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subscription-message.show {
    opacity: 1;
}

/* Current Deals */
.deals-wrapper {
    width: 100%;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.view-all:hover {
    gap: 8px;
}

/* Cards Grid - 5 in a row */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Deal Card */
.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(153, 132, 212, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.deal-card:hover {
    box-shadow: 0 15px 30px rgba(89, 46, 131, 0.1);
    border-color: rgba(153, 132, 212, 0.3);
}

/* Card Image */
.deal-card .card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.deal-card .card-image img {
    width: 50%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
    display: block;
    justify-self: center;
}

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

.deal-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(89, 46, 131, 0.3);
}

/* Card Content */
.deal-card .card-content {
    padding: 20px;
}

.deal-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-amethyst);
    margin-bottom: 8px;
    line-height: 1.4;
    height: 65px;
}

.logo-area {
    height: 100px;
    border-radius: 8px;
    align-items: center;
    width: 100%;
    overflow: hidden;
    align-content: center;
    align-self: center;
    text-align: center;
}

.logo-area img {
    max-height: 70px;
    max-width: 80%;
    object-fit: contain;
    justify-self: center;
}

.deal-card .card-body {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 80px;
}

/* --- Store Grid Cards --- */
.store-grid-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.store-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Card Footer */
.deal-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.deal-card .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.deal-card .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
    margin-right: 5px;
}

.deal-card .action-btn {
    background: rgba(153, 132, 212, 0.1);
    color: var(--primary);
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deal-card .action-btn:hover {
    background: var(--primary);
    color: white;
}

/* FAQ */


.faq-wrapper {
    width: 100%;
}

/* Header */
.faq-wrapper .faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-wrapper .faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(89, 46, 131, 0.2);
}

/* Modern Accordions */
.faq-wrapper .accordions-container {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(153, 132, 212, 0.1);
}

/* Accordion Item */
.faq-wrapper .accordion-item {
    border-bottom: 1px solid rgba(153, 132, 212, 0.2);
    overflow: hidden;
}

.faq-wrapper .accordion-item:last-child {
    border-bottom: none;
}

/* Accordion Header */
.faq-wrapper .accordion-header {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-wrapper .accordion-header:hover {
    background: rgba(153, 132, 212, 0.03);
}

.faq-wrapper .accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-amethyst);
    line-height: 1.4;
    transition: color 0.3s ease;
    padding-right: 40px;
}

.faq-wrapper .accordion-header:hover .accordion-title {
    color: var(--primary);
}

.faq-wrapper .accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-wrapper .accordion-icon span {
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-wrapper .horizontal {
    width: 20px;
    height: 2px;
    left: 2px;
    top: 11px;
}

.faq-wrapper .vertical {
    width: 2px;
    height: 20px;
    left: 11px;
    top: 2px;
    transform: rotate(0deg);
}

.faq-wrapper .accordion-item.active .vertical {
    transform: rotate(90deg);
}

.faq-wrapper .accordion-item.active .horizontal {
    background: var(--primary-dark);
}

.faq-wrapper .accordion-item.active .accordion-title {
    color: var(--primary);
}

/* Accordion Content */
.faq-wrapper .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-wrapper .accordion-body {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.faq-wrapper .contact-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(153, 132, 212, 0.1), rgba(89, 46, 131, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(153, 132, 212, 0.1);
}

.faq-wrapper .contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-amethyst);
    margin-bottom: 10px;
}

.faq-wrapper .contact-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.faq-wrapper .contact-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-wrapper .contact-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 46, 131, 0.2);
}

/* Notice */
.notice-wrapper p {
    text-align: center;
    font-style: italic;
    font-size: 14px;
    font-family: var(--font-family);
    font-weight: 600;
}

.notice-wrapper p a {
    color: #7a43d3 !important;
}

/* Whats INIT */
.section-wrapper {
    width: 100%;
}

/* Main Section with Background & Border */
/* Section background & styling */
.whats-in-section {
    /* background: linear-gradient(135deg, var(--season-theme-color) 0%, #26887C 100%); */
    background-color: #80d0c757;
    border: 2px dashed #105e72;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: #fff;
    /* default text color */
}

/* Header Split */
.header-split {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

/* Split image card (responsive) */


.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* keeps aspect ratio, crops if necessary */
    display: block;
}


.split-image .overlay-text {
  
    color: #150132;
    font-weight: bold;
    font-size: 26px;
    font-family: "Playlist", sans-serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    text-align: center;
}

/* Image Layout Cards */
.image-layout {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.image-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.layout-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover .layout-image {
    transform: scale(1.05);
}

/* Column widths */
.col-3-left,
.col-3-right {
    flex: 0 0 25%;
}

.col-6-center {
    flex: 0 0 50%;
}

.small-image {
    aspect-ratio: 305 / 250;
}

.large-image {
    aspect-ratio: 608 / 525;
}


/* Reviews Page */
/* Layout */
/* {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
} */

.left-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

/* .section-title {
    font-size: 1.6rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-light);
    font-size: 1.4rem;
} */

.section-badge {
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Section Cards */
.section-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(89, 46, 131, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(89, 46, 131, 0.15);
}

/* Featured Review - Left Top */
.featured-review-card {
    background: linear-gradient(135deg, #450077cc 0%, #9e62ffcc 100%);
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-content {
    z-index: 2;
    position: relative;
}

.featured-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.featured-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.featured-rating-value {
    font-weight: 700;
    font-size: 1.3rem;
}

.featured-review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.featured-reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.featured-reviewer-info {
    flex-grow: 1;
}

.featured-reviewer-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.featured-reviewer-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Store Reviews - Left Bottom */
.store-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-review-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-review-item:hover {
    background: rgba(158, 98, 255, 0.1);
    transform: translateX(5px);
}

.store-review-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--icon-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.store-review-content {
    flex-grow: 1;
}

.store-review-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.store-review-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.store-review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.store-review-stars {
    color: #FFD700;
}

.store-review-arrow {
    color: var(--primary-light);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* All Reviews - Right Side */
.all-reviews-container {
    height: 100%;
}

.reviews-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid rgba(158, 98, 255, 0.3);
    background: transparent;
    border-radius: 20px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.all-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding-right: 10px;
}

.all-reviews-list::-webkit-scrollbar {
    width: 6px;
}

.all-reviews-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.all-reviews-list::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.review-card {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid var(--primary-light);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(158, 98, 255, 0.15);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-product {
    font-family: var(--heading-font-family);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.review-category {
    background: rgba(158, 98, 255, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-stars {
    color: #FFD700;
}

.review-text {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(89, 46, 131, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--icon-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

.section-heading i {
    position: absolute;
    transform: rotate(45deg);
}


/* Review Details */
/* Main Container */
.reviews-details-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 8:4 Columns Grid */
.reviews-details-container .content-grid {
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 40px;
    margin-top: 30px;
}

/* Left Column - 8 */
.reviews-details-container .left-column {
    /* 8 parts */
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #f5f0ff, #e6ddff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Sections */
.reviews-details-container .content-section {
    margin-bottom: 40px;
}

.reviews-details-container .section-heading {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(158, 98, 255, 0.2);
}

.reviews-details-container .section-content {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

.reviews-details-container .section-content p {
    margin-bottom: 15px;
}

/* Points List with Left Border */
.reviews-details-container .points-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.reviews-details-container .point-item {
    padding: 15px 0 15px 20px;
    border-left: 4px solid var(--primary);
    margin-bottom: 15px;
    background: #f8f9ff;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.reviews-details-container .point-item:hover {
    background: #f0f0ff;
    transform: translateX(5px);
    border-left: 6px solid var(--primary);
    transition: all 0.2s ease;
}

.reviews-details-container .point-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

/* Notes Box */
.reviews-details-container .notes-box {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
    border-right: 4px solid var(--primary-light);
}

.reviews-details-container .notes-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-details-container .notes-title i {
    color: var(--primary);
}

/* Right Column - 4 */
.reviews-details-container .right-column {
    /* 4 parts */
}

/* New Card 1: Stats Card */
.reviews-details-container .stats-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(89, 46, 131, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(158, 98, 255, 0.1);
}

.reviews-details-container .stats-title {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(158, 98, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-details-container .stats-title i {
    color: var(--primary);
}

.reviews-details-container .stats-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reviews-details-container .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(158, 98, 255, 0.1);
}

.reviews-details-container .stat-row:last-child {
    border-bottom: none;
}

.reviews-details-container .stat-label {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-details-container .stat-label i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

.reviews-details-container .stat-value {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* New Card 2: Rate Card */
.reviews-details-container .rate-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(89, 46, 131, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(158, 98, 255, 0.1);
    text-align: center;
}

.reviews-details-container .rate-title {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviews-details-container .rate-title i {
    color: #FFD700;
}

.reviews-details-container .rate-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Star Rating System */
.reviews-details-container .star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    flex-direction: row-reverse;
}

.reviews-details-container .star-rating input {
    display: none;
}

.reviews-details-container .star-label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.reviews-details-container .star-label:hover,
.reviews-details-container .star-label:hover~.reviews-details-container .star-label,
.reviews-details-container .star-rating input:checked~.reviews-details-container .star-label {
    color: #FFD700;
}

.reviews-details-container .star-rating input:checked+.star-label {
    color: #FFD700;
}

.reviews-details-container .submit-rating-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviews-details-container .submit-rating-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.reviews-details-container .submit-rating-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Brand Card */
.reviews-details-container .brand-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(89, 46, 131, 0.1);
    margin: 0;
    margin-bottom: 30px;
    height: auto;
    border: 1px solid rgba(158, 98, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.reviews-details-container .brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.reviews-details-container .brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-right: 20px;
    font-weight: 700;
}

.reviews-details-container .brand-info {
    flex-grow: 1;
}

.reviews-details-container .brand-name {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.reviews-details-container .brand-category {
    color: #666;
    font-size: 0.9rem;
}

.reviews-details-container .visit-store-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviews-details-container .visit-store-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Review Card */
.reviews-details-container .review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(89, 46, 131, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(158, 98, 255, 0.1);
}

.reviews-details-container .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviews-details-container .review-title {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.reviews-details-container .review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
}

.reviews-details-container .review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.reviews-details-container .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #777;
}

.reviews-details-container .reviewer-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Tagline Box */
.reviews-details-container .tagline-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-details-container .tagline-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
}

/* Related Reviews */
.reviews-details-container .related-reviews {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(89, 46, 131, 0.1);
    border: 1px solid rgba(158, 98, 255, 0.1);
}

.reviews-details-container .related-title {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(158, 98, 255, 0.2);
}

.reviews-details-container .related-list {
    list-style: none;
    padding: 0;
}

.reviews-details-container .related-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(158, 98, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reviews-details-container .related-item:hover {
    background: #f8f9ff;
    padding-left: 10px;
}

.reviews-details-container .related-item:last-child {
    border-bottom: none;
}

.reviews-details-container .related-rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.reviews-details-container .related-product {
    font-weight: 500;
    color: var(--primary-dark);
    flex-grow: 1;
    font-size: 0.95rem;
}

.reviews-details-container .related-arrow {
    color: var(--primary-light);
    font-size: 0.9rem;
}

/* Blogs Page CSS */

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



.featured-section .section-title:after {
    content: '';
    position: absolute;
    width: 600px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    bottom: -10px;
    left: 27%;
    transform: translateX(-50%);
    animation: fadeIn 1s linear forwards;
}


.featured-section .featured-card {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.featured-section .featured-card:hover {
    box-shadow: 0 15px 30px rgba(89, 46, 131, 0.15);
}

.featured-section .featured-img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.featured-section .featured-card-body {
    padding: 20px;
    background-color: var(--white);
}

/* Main Content Area */
.main-content-card {
    border: none;
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(89, 46, 131, 0.15);
}

.main-content-card:hover {
    box-shadow: 0 10px 25px rgba(89, 46, 131, 0.15);
}

.latest-blog {
    background-color: #ffe2e2;
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
    font-family: var(--heading-font-family);
    height: 75px;
    display:block;
}

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

.blog-title a:hover {
    color: var(--primary);
}

.blog-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Season Theme */
.season-badge {
    background-color: var(--season-theme-bg-color);
    color: var(--season-theme-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.latest-blog .season-badge {
    background-color: var(--season-theme-color);
    color: var(--season-theme-bg-color);
}

/* Coupons CSS */
/* Search Bar */
.search-container-coupon {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.search-box {
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-input {
    flex: 1;
    border: none;
    padding: 20px 25px;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    background: var(--icon-gradient);
    padding: 40px 0;
    border-radius: 15px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* Brand Cards - col-3 */
.coupons-wrapper .brand-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.coupons-wrapper .brand-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(89, 46, 131, 0.15);
}

.coupons-wrapper .brand-card-header {
    background: linear-gradient(15deg, #00446c 0%, #80d0c7 100%);
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.coupons-wrapper .discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--season-theme-bg-color);
    color: var(--season-theme-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.coupons-wrapper .brand-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--primary);
}

.coupons-wrapper .brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.coupons-wrapper .brand-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.coupons-wrapper .brand-card-body {
    padding: 25px;
}

.coupons-wrapper .coupon-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.coupons-wrapper .coupon-count i {
    margin-right: 8px;
}

.view-coupons-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #06a79f;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  font-size: 13px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.view-coupons-btn:hover {
    background: var(--primary);
    color: white;
}

/* Benefits Section - 100% width cards */
.benefits-section {
    background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
    padding: 60px 0;
    margin: 60px 0;
}

/* New Stores Section */
.store-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(89, 46, 131, 0.15);
}

.store-logo {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #f5f5f5, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info {
    padding: 25px;
}

.store-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.brand-description,
.store-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Content Writing Section */
.content-section {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary);
}

.content-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.content-text {
    color: #212529;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-highlight {
    background: linear-gradient(135deg, rgba(158, 98, 255, 0.1), rgba(122, 67, 211, 0.1));
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}

.content-highlight p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
}

.content-highlight p::after,
.content-highlight p::before {
    content: '"';
}

/* Responsive */
@media (max-width: 1400px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {

    .coupons-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modern-carousel {
        padding: 0;
        height: 400px;
    }

    .unique-coupon-card {
        width: 48%;
        max-width: 320px;
    }

    .brand-card {
        height: 300px;
        padding: 30px 25px;
    }

    .brand-logo-item {
        width: 220px;
        height: 120px;
    }

    .logo-rectangle {
        width: 220px;
        height: 120px;
        padding: 8px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 12 - 30px * 12));
        }
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-columns {
        gap: 30px;
    }

    /* .featured-blog-image {
        height: 250px;
    } */

    .deals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    section {
        margin-bottom: 5rem;
    }

    .navbar-nav .nav-link {
        margin: 0.2rem 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        background-color: transparent;
        border: none;
        padding-left: 1rem;
    }

    .modern-carousel {
        padding: 0px;
        height: 300px;
    }

    .slide-content {
        gap: 40px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-logo-item {
        width: 180px;
        height: 100px;
    }

    .brands-wrapper .logo-rectangle {
        width: 220px;
        height: 120px;
        padding: 6px;
    }

    .carousel-track-brands {
        gap: 0px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 12 - 30px * 12));
        }
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .category-card {
        padding: 20px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .section-subtitle {
        font-size: 1rem;
        width: 85%;
    }

    .blog-columns {
        flex-direction: column;
    }

    /* .featured-blog-image {
        height: 300px;
    } */

    .categories-filter {
        gap: 10px;
    }

    .category-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .header-split {
        flex-direction: column;
        gap: 30px;
    }

    .split-image {
        width: 100%;
        height: auto;
    }

    .image-layout {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-details-container .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-col {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .col-3-left,
    .col-6-center,
    .col-3-right {
        flex: 0 0 100%;
    }

    .col-3-left .image-container,
    .col-3-right .image-container {
        flex: 1 1 calc(50% - 10px);
        height: 200px;
    }

    .large-image {
        height: 300px;
        flex: 1 1 100%;
    }

    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.25rem;
        margin-bottom: 21px;
    }

    .hero-section .lead {
        font-size: 1rem;
        min-height: 20px;
    }

    .feature-item {
        padding: 30px;
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        height: 60px;
        width: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: calc(1.5rem + .1vw);
    }

    .feature-item p {
        font-size: calc(1rem + .1vw);
    }

    .featured-badge {
        top: 110px;
    }

    .all-reviews-container {
        margin-top: 1.25rem;
    }
}

@media (max-width: 900px) {
    .newsletter-wrapper {
        height: auto;
        min-height: 230px;
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .email-form {
        width: 100%;
        max-width: 500px;
    }
}



@media (max-width: 768px) {

    .reviews-details-container .section-heading {
        font-size: 1.6rem;
    }

    .reviews-details-container .brand-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .reviews-details-container .brand-name {
        font-size: 1.3rem;
    }

    .reviews-details-container .star-label {
        font-size: 1.8rem;
    }

    .reviews-details-container .stat-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .reviews-details-container .stat-value {
        align-self: flex-end;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-card {
        padding: 20px;
    }

    .featured-review-card {
        min-height: auto;
        padding: 20px;
    }

    .discount-tag {
        font-size: 3rem;
    }

    .tag-1 {
        font-size: 4rem;
    }

    .tag-2 {
        font-size: 3rem;
    }

    .tag-3 {
        font-size: 4.5rem;
    }

    .tag-4 {
        font-size: 2.8rem;
    }

    .tag-5 {
        font-size: 3.5rem;
    }

    .tag-6 {
        font-size: 4rem;
    }

    section {
        margin-bottom: 4rem;
    }

    body {
        padding-top: 63px;
    }

    .whats-in-section {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .image-layout .image-container {
        max-height: 280px;
    }

    .col-3-left .image-container,
    .col-3-right .image-container {
        height: 180px;
    }

    .large-image {
        height: 280px;
    }

    .faq-wrapper .accordion-header {
        padding: 20px 15px;
    }

    .shop-wrapper .accordion-header {
        padding: 20px 15px 10px;
    }

    .faq-wrapper .accordion-title {
        font-size: 1rem;
        padding-right: 30px;
    }

    .shop-wrapper .accordion-title {
        font-size: 1rem;
        padding-right: 30px;
    }

    .faq-wrapper .accordion-body {
        padding: 0 15px 10px;
        font-size: 0.9rem;
    }

    .shop-wrapper .accordion-body {
        padding: 0 15px 10px;
        font-size: 0.9rem;
    }

    .shop-wrapper .accordion-content .category-title {
        font-size: 0.9rem;
        padding-left: 5px;
        padding-top: 10px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-image {
        height: 160px;
    }

    .section-header {
        gap: 10px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.8rem;
        width: 80%;
        margin: 0 auto 20px;
    }

    .featured-blog-content {
        padding: 25px;
    }

    .featured-blog-title {
        font-size: 1.5rem;
    }

    .blog-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-stats {
        width: 100%;
        justify-content: space-around;
    }

    .article-card {
        padding: 20px;
    }

    .tips-section {
        padding: 25px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .brand-item {
        padding: 10px;
    }

    .brand-logo {
        width: 220px;
        height: 120px;
    }

    .brand-logo-item {
        width: 160px;
        height: 90px;
    }

    .brands-wrapper .logo-rectangle {
        width: 220px;
        height: 120px;
        padding: 8px;
    }

    .read-blog-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-160px * 12 - 30px * 12));
        }
    }

    @keyframes fadeIn {
        0% {
            width: 0px;
        }

        100% {
            width: 400px;
            left: 50%;
        }
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 60px;
    }

    .hero-img {
        max-height: 220px;
    }

    .coupons-row {
        gap: 15px;
    }

    .unique-coupon-card {
        width: 100%;
        max-width: 260px;
    }

    .modern-carousel {
        height: auto;
    }

    .slide-content {
        flex-direction: column;
        gap: 20px;
        min-height: 200px;
        text-align: center;
    }

    .carousel-slide {
        padding: 0;
    }

    .text-content {
        padding-right: 0;
    }

    .slide-description {
        max-width: 100%;
    }

    .image-content {
        height: 200px;
        width: 100%;
    }

    .slide-stats {
        justify-content: center;
    }

    .carousel-nav {
        padding: 0 5px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .section-description {
        font-size: 1rem;
    }

    .custom-nav button {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .brand-card {
        height: 280px;
        padding: 25px 20px;
    }

    .brand-logo-container {
        width: 100px;
        height: 100px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }

    .hero-section .lead {
        font-size: 1rem;
        min-height: 30px;
    }

    .btn-primary-custom {
        font-size: 1rem;
        border-radius: .5rem;
        padding: 0.5rem 1rem;
    }

    .owl-dots {
        margin-top: 12px !important;
    }

    .owl-dot {
        width: 9px;
        height: 9px;
        margin: 0 3px;
    }

    .feature-item {
        padding: 25px;
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        height: 55px;
        width: 55px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: calc(1.35rem + .1vw);
    }

    .feature-item p {
        font-size: calc(0.9rem + .1vw);
    }

    .search-box {
        flex-direction: row;
        /* column hata diya */
        border-radius: 15px;
    }

    .search-input {
        flex: 0 0 80%;
        padding: 10px;
        max-width: 80%;
        border-radius: 15px 0 0 15px;
        margin-bottom: 0;
    }

    .search-btn {
        flex: 0 0 20%;
        max-width: 20%;
        border-radius: 15px;
        padding: 12px;
        font-size: 0.85rem;
        text-align: center;
    }

    .search-btn span {
        display: none;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-text {
        font-size: calc(1rem - .1vw);
    }

    .filter-section {
        margin-top: 1.25rem;
    }

    .newsletter-sidebar {

        border-radius: 0 !important;
    }

    .featured-badge {
        top: 84px;
        padding: 6px 14px;
        font-size: 0.9rem;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-review-text {
        font-size: 0.9rem;
    }

    .featured-reviewer-avatar {
        height: 35px;
        width: 35px;
        font-size: 0.8rem;
    }

    .featured-reviewer-name {

        font-size: 1rem;
    }

    .featured-reviewer-role {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    section {
        margin-bottom: 3rem;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 2.25rem;
        margin-bottom: 18px;
    }

    .hero-section .lead {
        font-size: 1rem;
        min-height: 30px;
    }

    .section-subtitle::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        animation: fadeIn 1s linear forwards;
    }

    .featured-badge {
        top: 15px;
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-review-text {
        font-size: 0.9rem;
    }

    .featured-reviewer-avatar {
        height: 35px;
        width: 35px;
        font-size: 0.8rem;
    }

    .featured-reviewer-name {

        font-size: 1rem;
    }

    .featured-reviewer-role {
        font-size: 0.7rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .article-title-section{
    display: block;
    
}

    .footer-socials {
        flex-direction: column;
    }

    .modern-carousel {
        padding: 20px;
    }

        .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .custom-nav {
        display: none;
    }

    .brand-card {
        margin: 10px;
        height: auto;
        min-height: 260px;
    }

    .unique-coupon-card {
        width: 100%;
        max-width: 320px;
    }

    .brand-logo-item {
        width: 140px;
        height: 80px;
    }

    .brands-wrapper .logo-rectangle {
        width: 220px;
        height: 120px;
        padding: 12px;
    }

    .rectangle-carousel {
        padding: 20px 0;
    }

    .blog-columns {
        padding: 0 20px;
    }

    .featured-blog-excerpt {
        font-size: 0.9rem;
    }

    .read-blog-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .section-wrapper {
        padding: 0 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 12 - 30px * 12));
        }
    }

    @keyframes fadeIn {
        0% {
            width: 0px;
        }

        100% {
            width: 200px;
        }
    }

    .category-card {
        padding: 18px;
    }

    .category-header {
        margin-bottom: 20px;
    }

    .brands-list {
        gap: 12px;
    }

    .header-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* .featured-blog-image {
        height: 220px;
    } */

    .featured-blog-title {
        font-size: 1.3rem;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .coupon-tag {
        display: none;
    }

    .newsletter-wrapper {
        padding: 30px 20px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .email-form {
        flex-direction: column;
        gap: 12px;
    }

    .email-input,
    .subscribe-btn {
        width: 100%;
    }

    .deals-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .card-image {
        height: 180px;
    }

    .accordion-header {
        padding: 18px 15px;
    }

    .col-3-left .image-container,
    .col-3-right .image-container {
        height: 200px;
        flex: 1 1 100%;
    }

    .large-image {
        height: 250px;
    }

    .nav-btn {
        display: none;
    }

    .modern-carousel {
        padding: 0;
    }

    .slide-content {
        min-height: 100px;
    }

    .notice-wrapper p {
        font-size: 0.7rem;
    }

    .blog-date {
        font-size: 0.65rem;
    }

    .blog-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .blog-description {
        font-size: 0.75rem;
    }

    .season-badge {
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 0.5rem;
        margin-bottom: 12px;
    }

    .latest-blog .season-badge {
        padding: 4px 10px;
        border-radius: 10px;
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .sidebar-header {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .sidebar-title::after {
        bottom: -10px;
    }

    .trending-item {
        padding: 8px 0;
    }

    .trending-title {
        font-size: 0.8rem;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mt-5 {
        margin-top: 2rem !important;
    }

    .btn-primary-custom {
        font-size: 0.85rem;
    }

    .benefits-section {
        padding: 30px 0;
        margin: 30px 0;
    }

    .feature-item {
        padding: 20px;
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        height: 50px;
        width: 50px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: calc(1.25rem + .1vw);
    }

    .feature-item p {
        font-size: calc(0.85rem + .1vw);
    }

    .content-text {
        font-size: calc(0.9rem - .1vw);
    }

    .search-container-coupon {
        padding: 0 10px;
        margin: 0 auto 20px;
    }

    .search-box {
        padding: 4px;
    }

    .search-input {
        flex: 0 0 90%;
        max-width: 90%;
        font-size: 0.8rem;
        border-radius: 15px 0 0 15px;
        margin-bottom: 0;
    }

    .search-btn {
        flex: 0 0 10%;
        max-width: 10%;
        border-radius: 20px;
        padding: 8px;
        font-size: 0.85rem;
        text-align: center;
    }

    .search-btn i {
        margin-right: 0;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }
}

.main-home-title{
    text-align: center;
    font-weight: 800;
    color: #105e72;
}

.main-home-desc{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0px 40px;
}

@media (max-width: 480px) {
    .discount-tag {
        font-size: 2.5rem;
    }

    .main-home-title{
        text-align: center;
        font-weight: 800;
        font-size: 18px;
        color: #105e72;
    }

    .main-home-desc{
        font-size: 13px;
    }

    .hero-section h1{
    font-size:1.5rem;
  
} 

.hero-section h2{
    font-size:1rem;
    
} 

.hero-section p{
    font-size:0.8rem;
    
        padding: 0px 20px;
} 
.hero-section span{
    font-size:0.8rem;
    
        padding: 0px 20px;
}

    .tag-1 {
        font-size: 3.2rem;
    }

    .tag-2 {
        font-size: 2.5rem;
    }

    .tag-3 {
        font-size: 3.5rem;
    }

    .tag-4 {
        font-size: 2.2rem;
    }

    .tag-5 {
        font-size: 2.8rem;
    }

    .hero-img {
        max-height: 180px;
    }

    .unique-coupon-card {
        width: 100%;
        max-width: 320px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-section .lead {
        font-size: 0.8rem;
        min-height: 0;
    }

    .btn-primary-custom {
        font-size: 0.75rem;
    }

    .btn-outline-light {
        font-size: 0.75rem;
        border-radius: .5rem;
        padding: 0.5rem 1rem;
    }

    .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .feature-item {
        padding: 20px;
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        height: 40px;
        width: 40px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: calc(1rem + .1vw);
    }

    .feature-item p {
        font-size: calc(0.75rem + .1vw);
    }

    .feature-item .feature-number {
        font-size: 2rem;
        font-size: 600;
        margin-bottom: 6px;
    }

    .feature-item small {
        font-size: .7em;
    }

    .owl-dot {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }

    .mt-5 {
        margin-top: 1rem !important;
    }

    .content-highlight {
        padding: 1rem;
    }

    .content-highlight p {
        font-size: 1rem;
    }

    .coupons-wrapper .coupon-count {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .store-name {
        font-size: 1rem;
    }

    .sm-d-none {
        display: none;
    }

    .brand-description,
    .store-description {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    
    .brand-logo {
        width: 110px !important;
        height: 60px !important;
    }

        .brands-wrapper .logo-rectangle {
        width: 110px;
        height: 60px;
        padding: 12px;
    }

    .view-coupons-btn {
        font-size: 0.75rem;
        padding: 6px;
    }
}


 /* --- Category Slider --- */
     .category-scroll {
         display: flex;
         overflow-x: auto;
         gap: 2rem;
         padding: 1rem 0;
         scrollbar-width: none;
         /* Firefox */
         -ms-overflow-style: none;
         /* IE */
     }

     .category-scroll::-webkit-scrollbar {
         display: none;
     }

     .category-item {
         display: flex;
         flex-direction: column;
         align-items: center;
         min-width: 90px;
         cursor: pointer;
         text-decoration: none;
         color: var(--primary-dark);
     }

     .cat-icon {
         width: 80px;
         height: 80px;
         border-radius: 50%;
         background: white;
         display: flex;
         align-items: center;
         justify-content: center;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
         margin-bottom: 12px;
         font-size: 28px;
         transition: 0.3s;
         border: 1px solid #f8fafc;
     }

     .category-item:hover .cat-icon {
         transform: translateY(-5px);
         box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
         border-color: var(--accent-orange);
         color: var(--accent-orange);
     }

     .cat-label {
         font-size: 0.95rem;
         font-weight: 600;
     }

     .modal-body{
        text-align:center;
     }

     .article-footer .action-btn {
    background: rgba(153, 132, 212, 0.1);
    color: var(--primary);
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heading-span {
    color: #000;
    font-size: 19px;
    font-weight: 600;
}

.search-new-div a {
    color: #000 !important;
    text-decoration: none !important;
    font-size: 16px;
}

.search-new-div ul {
    width: 100% !important;
    padding-left: 0;
}

.search-new-div {
    box-shadow: rgba(0, 0, 0, .2) 2px 5px 5px 1px;
    padding-top: 14px;
    padding-left: 8px;
    position: absolute;
    background: #fff;
    z-index: 999999;
    border-radius: 4px;
    max-width: 350px;
    margin-top: 20px;
}

.search-new-div li {
    padding: 7px 0 7px 24px;
    margin-left: -8px;
    margin-right: -13px;
        list-style: none;
}

.region-select {
    position: relative;
}

.region-select .change-country {
    align-items: center;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.region-select .selected-region {
    align-items: center;
    background: transparent;
    box-shadow: none;
    color: #fff;
    display: inline-flex;
    font-family: Poppins, sans-serif;
    font-size: .875rem;
    line-height: 1.43;
    padding: 0;
        border: none;
    margin-right: 15px;
}

.region-select .flag {
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 4px;
    display: block;
    height: 24px;
    width: 24px;
}

.region-select .arrow {
    border: solid #fff;
    border-width: 2px 0 0 2px;
    display: inline-block;
    height: .5rem;
    margin-left: .5rem;
    transform: rotate(-135deg);
    transition: transform .2s ease;
    width: .5rem;
}

.region-select .dropdown.switch-region.position-above {
    margin-bottom: .75rem;
}
.region-select .dropdown.switch-region {
    border-radius: 0;
    display: none;
    z-index: 1000;
}

.switch-region li {
     list-style: none;
}
.region-select .dropdown.switch-region .dropdown-item {
    display: inline-flex;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    min-width: 180px;
    padding: .25rem;
    gap:10px;
}

.region-select .dropdown.switch-region .dropdown-item .flag
 {
    margin-right: .75rem;
}

.region-select .dropdown.switch-region.active {
    display: block;
}

.dropdown {
    background-color: #fff;
    color:#008687 !important;
    box-shadow: 0 2px 6px 4px rgba(51, 51, 51, .09);
    flex-direction: column;
    margin-top: .5rem;
    padding: .25rem;
    position: absolute;
}

.switch-region .dropdown-item{
    color:#008687 !important;
}


.region-code{
    margin:0px;
}