.site-header {
    background: #fff;
    border-top: 5px solid #7c3aed;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 999;
}

.header-top-bar {
    background: #7c3aed;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 15px;
}

.header-main {
    display: grid;
    grid-template-columns: 1fr 420px auto;
    align-items: center;
    gap: 32px;
    padding: 16px 0 12px;
}

.header-logo a {
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
}

.header-logo img {
    max-width: 230px;
    height: auto;
}

.header-search input {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.header-search input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 22px;
    cursor: pointer;
}

.header-nav-wrap {
    padding: 0 0 14px;
}

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

.header-nav a {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.header-nav a:hover {
    color: #7c3aed;
}

/* Responsive */
@media (max-width: 900px) {
    .header-main {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-nav-wrap {
        display: none;
        padding: 0 0 16px;
    }

    .site-header.menu-open .header-nav-wrap {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 12px;
    }

    .header-nav li {
        width: 100%;
    }

    .header-nav a {
        display: block;
        padding: 12px 0;
    }
}


/*heder search css */
.header-search {
    position: relative;
}

.header-search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
    z-index: 9999;
    overflow: hidden;
}

.header-search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #111827;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.search-suggestion-item:hover {
    background: #f5f3ff;
}

.search-suggestion-img {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-suggestion-item strong {
    display: block;
    font-size: 14px;
}

.search-suggestion-item small {
    color: #7c3aed;
    font-size: 12px;
    text-transform: capitalize;
}

.search-suggestion-empty {
    padding: 14px;
    color: #6b7280;
}




/*footer css start */
.site-footer {
    padding: 55px 0 0px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    gap: 50px;
}

.footer-brand img {
    max-width: 260px;
    height: auto;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-weight: 800;
}

.footer-social a {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #111;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-menu a:hover,
.footer-bottom a {
    color: #7c3aed;
}
.footer-bottom {
    text-align: center;
    margin-top: 42px;
    padding-top: 28px;
}

.footer-bottom-widget {
    margin-bottom: 8px;
}

.footer-bottom-widget p {
    margin: 7px 0;
}

.footer-bottom-widget a {
    color: #7c3aed;
    text-decoration: none;
}

.footer-bottom-widget select {
    width: 170px;
    height: 44px;
    border-radius: 8px;
    background: #374151;
    color: #fff;
    border: 1px solid #4b5563;
    padding: 0 14px;
    margin: 8px 0;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/*footer css end */


/* =========================================================
   COUPON POPUP DESIGN START - LIGHT THEME
========================================================= */

.coupon-popup {
    position: fixed;
    inset: 0;
    background: rgb(17 24 39 / 73%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.coupon-popup.active {
    display: flex;
}

.dp-popup-box {
    position: relative;
    width: min(940px, 96vw);
    display: grid;
    gap: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.dp-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #7c3aed;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.dp-popup-top {
    padding: 38px 55px 34px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(17,24,39,0.10);
}
.dp-popup-logo {
    width: 190px;
    height: 92px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    margin: 0 auto 22px;
    display: block;
}

.dp-popup-top h2 {
    font-size: 28px;
    line-height: 1.35;
    margin: 0 0 12px;
    font-weight: 900;
    color: var(--text);
}

.dp-popup-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}

.dp-popup-meta span {
    background: #f3e8ff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
}

.dp-code-row {
    max-width: 620px;
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: 1fr 200px;
    border: 2px solid var(--primary);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.dp-code-text {
    color: var(--text);
    font-size: 30px;
    padding: 22px;
    background: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.dp-copy-btn {
    border: 0;
    background: var(--primary);
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    cursor: pointer;
}

.dp-continue-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: underline;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dp-popup-desc {
    margin: 0;
    font-size: 16px;
    color: var(--text-light);
}

.dp-store-big-btn {
    display: inline-block;
    min-width: 300px;
    background: var(--primary);
    color: #fff;
    padding: 18px 28px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    margin: 16px 0;
}

.dp-newsletter {
    position: relative;
    background: linear-gradient(
        135deg,
        #f5f0ff 0%,
        #eef2ff 100%
    );
    padding: 46px 40px 50px;
    text-align: center;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.10);
    box-shadow: 0 20px 60px rgba(17,24,39,0.10);
}
.dp-newsletter h3 {
    font-size: 26px;
    margin: 0 0 4px;
    color: var(--text);
}

.dp-newsletter p {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}


.dp-newsletter small {
    display: block;
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .dp-popup-top {
        padding: 32px 22px;
    }

    .dp-popup-top h2 {
        font-size: 22px;
    }

    .dp-code-row {
        grid-template-columns: 1fr;
    }

    .dp-copy-btn {
        padding: 16px;
    }

    .dp-popup-close {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
}

/* =========================================================
   COUPON POPUP DESIGN END - LIGHT THEME
========================================================= */

/*badge css */

.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    border-radius: 50px;
    background: #7c3aed;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

/* =========================================================
   FORM MESSAGE START
========================================================= */

.dp-form-message {
    margin-top: 14px;
    text-align: center;
}

.dp-success-msg {
    color: #16a34a;
    font-weight: 700;
}

.dp-error-msg {
    color: #dc2626;
    font-weight: 700;
}

/* =========================================================
   FORM MESSAGE END
========================================================= */

.buttond-grad{
background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 35%, #A855F7 70%, #EC4899 100%);
}

.buttond-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.45);
    filter: brightness(1.05);
}

/*verify badge css start  */


.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #2eaf43;
    border-radius: 3px;
    background: #fff;
    color: #2eaf43;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.not-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #d93025;
    border-radius: 3px;
    background: #fff;
    color: #d93025;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

/*verify badge css end  */


/*breadcrumb css start */
.store-breadcrumb {
    margin-bottom: 5px;
    padding: 5px;
}
.store-breadcrumb a {
 
    text-decoration: none;
    transition: 0.3s ease;
}

.store-breadcrumb a:hover {
    color: #2d8cff;
}

.store-breadcrumb span {
    color: rgb(124 58 237);
}

.store-breadcrumb .current {
    color: #7c3aed;
    font-weight: 600;
}

@media (max-width: 768px) {
    .store-breadcrumb {
        font-size: 13px;
        gap: 5px;
        margin-bottom: 16px;
        padding: 10px 0;
    }
}
/*breadcrumb css start */

/*cookie css start */


.dp-cookie-popup {
    position: fixed;
    left: 20px;
    bottom: 20px;
    max-width: 420px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: 0.25s ease;
}

.dp-cookie-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dp-cookie-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
}

.dp-cookie-content p {
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.dp-cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dp-cookie-actions a {
    color: #7c3aed;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.dp-cookie-actions button {
    border: none;
    border-radius: 999px;
    background: #7c3aed;
    color: #fff;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 520px) {
    .dp-cookie-popup {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }
}
/*cookie css end */

/* =========================================================
   COUPON CARD WRAPPER
========================================================= */

.store-coupons {
    display: grid;
    gap: 18px;
}

.store-coupon-card {
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr) 280px;
    grid-template-areas:
        "discount content action"
        "discount content meta";
    gap: 0 28px;
    align-items: center;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: visible;
}


/* =========================================================
   DISCOUNT BOX
========================================================= */

.discount-box {
    grid-area: discount;
    min-height: 100px;
    border: 2px dashed var(--primary);
    border-radius: 18px;
    background: #faf7ff;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    text-align: center;
}

.discount-box strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.discount-box small {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1;
    color: var(--primary);
}


/* =========================================================
   COUPON CONTENT
========================================================= */

.coupon-content {
    grid-area: content;
    align-self: center;
}

.coupon-content h3 {
    max-width: 520px;
    margin: 0 0 14px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.3;
}


/* =========================================================
   DETAILS TOGGLE
========================================================= */

.details-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.details-toggle span {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.details-toggle.active span {
    transform: rotate(180deg);
}


/* =========================================================
   DETAILS CONTENT
========================================================= */

.coupon-details {
    display: none;
    max-width: 520px;
    margin-top: 12px;
    padding: 16px 18px;
    background: #f7f4ff;
    border-radius: 14px;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.coupon-details.active {
    display: block;
}

.coupon-details p {
    margin: 0;
}


/* =========================================================
   COUPON BUTTON
========================================================= */

.coupon-action {
    grid-area: action;
    align-self: start;
    padding-top: 10px;
}

.coupon-action .coupon-button {
    width: 100%;
    min-height: 45px;
    border: 0;
    border-radius: 12px;
    padding: 13px 22px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.2s ease;
}

.discount-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 3px;
}

/* =========================================================
   COUPON META
========================================================= */

.coupon-meta {
    grid-area: meta;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-top: 22px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE COUPON CARD
========================================================= */

@media (max-width: 900px) {
    .store-coupon-card {
        grid-template-columns: 110px minmax(0, 1fr);
        grid-template-areas:
            "discount content"
            "discount action"
            "discount meta";
        gap: 18px;
    }

    .coupon-action {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .store-coupon-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "discount"
            "content"
            "action"
            "meta";
        padding: 20px;
    }

    .discount-box {
        min-height: 90px;
    }

    .coupon-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}



/* =========================
   Coupon Filter Tabs
========================= */

.coupon-filter-tabs {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.coupon-filter {
    border: 1px solid #c7c7c7;
    outline: 0;
    cursor: pointer;
    background: #f3f4f6;
    color: #111827;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.coupon-filter:hover {
    background: #e5e7eb;
}

.coupon-filter.active {
    background: linear-gradient(135deg, #6d28d9, #d946ef);
    color: #fff;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.18);
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 768px) {

    .coupon-filter-tabs {
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 14px;
        scrollbar-width: none;
    }

    .coupon-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .coupon-filter {
        flex: 0 0 auto;
        padding: 11px 15px;
        font-size: 12px;
    }
}

/* =========================
   Coupon Filter Tabs End
========================= */
