:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-soft: #f3e8ff;
    --text: #111827;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --bg: #f6f7fb;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 8px 24px rgba(17,24,39,0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 56px 0;
}

h1, h2, h3, h4, p {
    margin-top: 0;
}



/*newsletter css start */
/* =========================================================
   GLOBAL NEWSLETTER
========================================================= */

.dp-newsletter-box {
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    border-radius: 18px;
    padding: 46px 24px;
    text-align: center;
}

.dp-newsletter-box h2 {
    color: #111827;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
}

.dp-newsletter-subtitle {
    color: #374151;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 28px;
}

/* =========================================================
   FORM
========================================================= */

.dp-newsletter-form {
    max-width: 520px !important;
    margin: 0 auto;
    position: relative;
}

.dp-newsletter-form input {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    border: 2px solid #e9d5ff;
    background: #fff;
    padding: 0 72px 0 24px;
    font-size: 16px;
    color: #111827;
    outline: none;
    transition: all .25s ease;
}

.dp-newsletter-form input:focus {
    border-color: #7c3aed;
}

.dp-newsletter-form button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #7c3aed;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all .25s ease;
}

.dp-newsletter-form button:hover {
    background: #6d28d9;
}

/* =========================================================
   MESSAGE
========================================================= */

.dp-form-message,
.dp-newsletter-message {
    margin-top: 14px;
    text-align: center;
}

.dp-success-msg {
    color: #16a34a;
    font-size: 14px;
    font-weight: 700;
}

.dp-error-msg {
    color: #dc2626;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   NOTE
========================================================= */

.dp-newsletter-note {
    max-width: 560px;
    margin: 22px auto 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
}

.dp-newsletter-note a {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
}

.dp-newsletter-note a:hover {
    text-decoration: underline;
}

/* =========================================================
   HOME PAGE SPACING
========================================================= */

.home-newsletter-section {
    padding: 44px 0 60px;
}

/* =========================================================
   POPUP VERSION
========================================================= */

.dp-popup-box .dp-newsletter-box {
    background: transparent;
    border: none;
    padding: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .dp-newsletter-box {
        padding: 34px 18px;
        border-radius: 16px;
    }

    .dp-newsletter-box h2 {
        font-size: 26px;
    }

    .dp-newsletter-subtitle {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .dp-newsletter-form input {
        height: 52px;
        font-size: 15px;
        padding: 0 64px 0 18px;
    }

    .dp-newsletter-form button {
        width: 38px;
        height: 38px;
        top: 7px;
        right: 7px;
    }

    .dp-newsletter-note {
        font-size: 12px;
        line-height: 1.6;
    }
}
/*global title css */
.section-title {
    color: #111827;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 28px;
}



/*scrollTopBtn css start */

#scrollTopBtn {
    position: fixed;
    right: 22px;
    bottom: 50px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition: all .25s ease;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}

#scrollTopBtn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: #6d28d9;
}

@media (max-width: 767px) {
    #scrollTopBtn {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 16px;
        font-size: 20px;
    }
}

/*scrollTopBtn css end */



/*home Stat icon css start */
.home-stats-section {
    background: #fff;
    padding: 44px 0 60px;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 28px;
}

.home-stat-item {
    text-align: center;
}

.home-stat-icon {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #f5f3ff;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-stat-icon img {
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
}

.home-stat-item strong {
    display: block;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.home-stat-item span {
    color: #374151;
    font-size: 16px;
}

@media (max-width: 900px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .home-stats-grid {
        grid-template-columns: 1fr;
    }
}
/*home Stat icon css end */



/*home Recently and Popular Brands css Start */
.home-brand-links-section {
    padding: 40px 0 50px;
}

.home-brand-links-block + .home-brand-links-block {
    margin-top: 48px;
}

.home-brand-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px 16px;
}

.home-brand-link-pill {
    min-height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #fff;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
    transition: 0.25s ease;
}

.home-brand-link-pill:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .home-brand-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .home-brand-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*home Recently and Popular Brands css end */