*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* nav */
/* =========================
   HEADER / NAVBAR STYLING
========================= */

.vitample-header,
.vitample-header * {
    box-sizing: border-box;
}

.vitample-header {
    width: 100%;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    border-top: 3px solid #333333;
    position: relative;
    z-index: 1000;
}

.vitample-container {
    width: min(100% - 40px, 1220px);
    margin: 0 auto;
}

/* Top Header */

.vitample-topbar {
    background: #ffffff;
}

.vitample-topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.vitample-logo {
    width: 255px;
    max-width: 100%;
    flex-shrink: 0;
    text-decoration: none;
}

.vitample-logo img {
    width: 100%;
    max-width: 255px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Search */

.vitample-search {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #f3f3f3;
    border-radius: 3px;
    padding: 0 18px;
}

.vitample-search-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    margin-right: 12px;
}

.vitample-search-icon svg {
    width: 100%;
    height: 100%;
    fill: #d4d4d4;
}

.vitample-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #333333;
    font-size: 14px;
}

.vitample-search input::placeholder {
    color: #d4d4d4;
}

/* Account Actions */

.vitample-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vitample-action {
    min-width: 92px;
    min-height: 52px;
    padding: 4px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #363636;
    text-decoration: none;
    border-right: 1px solid #e7e7e7;
    transition: color 0.25s ease;
}

.vitample-action:first-child {
    border-left: 1px solid #e7e7e7;
}

.vitample-action:hover {
    color: #8a2672;
}

.vitample-action-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.vitample-action-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.vitample-action-text {
    font-size: 10px;
    white-space: nowrap;
}

/* Desktop Navbar */

.vitample-navbar {
    background: #8f286f;
}

.vitample-navbar-inner {
    min-height: 57px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.vitample-menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vitample-menu li {
    display: flex;
    align-items: stretch;
}

.vitample-menu a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 23px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.vitample-menu a::after {
    content: "";
    position: absolute;
    left: 23px;
    right: 23px;
    bottom: 12px;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.vitample-menu a:hover::after,
.vitample-menu a:focus-visible::after {
    transform: scaleX(1);
}

/* Cart */

.vitample-cart {
    min-width: 145px;
    padding-left: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    color: #ffffff;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.vitample-cart-price {
    font-size: 13px;
    font-weight: 700;
}

.vitample-bag-icon {
    position: relative;
    width: 27px;
    height: 31px;
    display: inline-flex;
}

.vitample-bag-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}

.vitample-cart-count {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    line-height: 1;
    color: #8f286f;
    font-weight: 700;
}

/* Mobile Toggle */

.vitample-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #8f286f;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}

.vitample-menu-toggle span {
    width: 23px;
    height: 2px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.vitample-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vitample-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.vitample-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */

.vitample-mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid #ededed;
    transition: max-height 0.4s ease;
}

.vitample-mobile-menu.is-open {
    max-height: 700px;
}

.vitample-mobile-search {
    margin: 18px 20px 10px;
    height: 44px;
    display: flex;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
}

.vitample-mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.vitample-mobile-search button {
    width: 48px;
    border: 0;
    background: #8f286f;
    cursor: pointer;
}

.vitample-mobile-search button svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.vitample-mobile-menu > ul {
    padding: 8px 20px;
    margin: 0;
    list-style: none;
}

.vitample-mobile-menu > ul li {
    border-bottom: 1px solid #eeeeee;
}

.vitample-mobile-menu > ul a {
    position: relative;
    display: block;
    padding: 14px 4px;
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.vitample-mobile-menu > ul a::after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: 9px;
    width: 0;
    height: 2px;
    background: #8f286f;
    transition: width 0.25s ease;
}

.vitample-mobile-menu > ul a:hover::after {
    width: 35px;
}

.vitample-mobile-links {
    padding: 4px 20px 20px;
    display: grid;
    gap: 10px;
}

.vitample-mobile-links > a {
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.vitample-mobile-cart {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #8f286f;
    color: #ffffff !important;
    border-radius: 3px;
}

.vitample-mobile-cart strong {
    margin-left: auto;
}

.vitample-mobile-count {
    min-width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8f286f;
    background: #ffffff;
    border-radius: 50%;
    font-size: 10px;
}

/* Bottom Accent Line */

.vitample-header-line {
    width: calc(100% - 80px);
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(
        to right,
        #582985 0%,
        #582985 86%,
        #8f286f 86%,
        #8f286f 100%
    );
}

/* Tablet */

@media (max-width: 1050px) {
    .vitample-topbar-inner {
        gap: 20px;
    }

    .vitample-logo {
        width: 210px;
    }

    .vitample-menu a {
        padding: 0 13px;
        font-size: 11px;
    }

    .vitample-menu a::after {
        left: 13px;
        right: 13px;
    }
}

/* Mobile */

@media (max-width: 820px) {
    .vitample-container {
        width: min(100% - 30px, 100%);
    }

    .vitample-topbar-inner {
        min-height: 70px;
        gap: 14px;
    }

    .vitample-logo {
        width: 185px;
        margin-right: auto;
    }

    .vitample-logo img {
        height: 50px;
    }

    .vitample-search,
    .vitample-navbar,
    .vitample-action-text {
        display: none;
    }

    .vitample-actions {
        gap: 7px;
    }

    .vitample-action {
        min-width: auto;
        min-height: 42px;
        padding: 8px;
        border: 0;
    }

    .vitample-action:first-child {
        border: 0;
    }

    .vitample-menu-toggle {
        display: flex;
    }

    .vitample-mobile-menu {
        display: block;
    }

    .vitample-header-line {
        width: calc(100% - 30px);
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .vitample-container {
        width: calc(100% - 22px);
    }

    .vitample-logo {
        width: 155px;
    }

    .vitample-action {
        display: none;
    }

    .vitample-menu-toggle {
        display: flex;
    }

    .vitample-mobile-search,
    .vitample-mobile-menu > ul,
    .vitample-mobile-links {
        margin-left: 14px;
        margin-right: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .vitample-header-line {
        width: calc(100% - 22px);
    }
}
/* ==== */

/* =image  */
.vitample-hero-banner {
    width: 100%;
    overflow: hidden;
    background: #f4f4f4;
}

.vitample-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
    .vitample-hero-banner img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .vitample-hero-banner {
        width: 100%;
    }

    .vitample-hero-banner img {
        width: 100%;
        height: auto;
        aspect-ratio: 2560 / 960;
        object-fit: contain;
        object-position: center;
    }
}
/* === */

/* ======== */
/* =========================
   ABOUT US SECTION
========================= */

.vitample-about-section,
.vitample-about-section * {
    box-sizing: border-box;
}

.vitample-about-section {
    width: 100%;
    padding: 58px 20px 64px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
}

.vitample-about-container {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.vitample-about-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.vitample-about-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 26px;
    color: #000000;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 2px;
}

.vitample-about-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 100%;
    height: 5px;
    background: rgba(90, 58, 170, 0.22);
    transform: translateX(-50%);
    z-index: -1;
}

.vitample-about-heading p {
    margin: 0;
    color: #222222;
    font-size: 13px;
    line-height: 1.65;
}

.vitample-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 55px;
    align-items: start;
}

.vitample-about-card {
    text-align: center;
}

.vitample-about-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
}

.vitample-about-icon svg {
    width: 64px;
    height: 64px;
    fill: currentColor;
}

.vitample-about-card h3 {
    margin: 0 0 25px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.vitample-about-card p {
    max-width: 310px;
    margin: 0 auto;
    color: #222222;
    font-size: 12px;
    line-height: 1.65;
}

.vitample-small-symbol {
    margin-right: 4px;
    font-size: 11px;
}

/* Tablet */

@media (max-width: 900px) {
    .vitample-about-section {
        padding: 48px 22px 54px;
    }

    .vitample-about-grid {
        gap: 32px;
    }

    .vitample-about-card p {
        font-size: 12px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vitample-about-section {
        padding: 42px 18px 48px;
    }

    .vitample-about-heading {
        margin-bottom: 36px;
    }

    .vitample-about-heading h2 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .vitample-about-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .vitample-about-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .vitample-about-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .vitample-about-icon {
        margin-bottom: 16px;
    }

    .vitample-about-card h3 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .vitample-about-card p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }
}

/* Small Mobile */

@media (max-width: 420px) {
    .vitample-about-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .vitample-about-heading h2 {
        font-size: 25px;
    }

    .vitample-about-icon {
        width: 68px;
        height: 68px;
    }

    .vitample-about-icon svg {
        width: 58px;
        height: 58px;
    }
}
/* ======= */


/* section -4 */
/* =========================
   FAQ SECTION
========================= */

.vitample-faq-section,
.vitample-faq-section * {
    box-sizing: border-box;
}

.vitample-faq-section {
    width: 100%;
    padding: 68px 20px;
    background: #222222;
    font-family: Arial, Helvetica, sans-serif;
}

.vitample-faq-container {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 90px;
    align-items: center;
}

/* Left Content */

.vitample-faq-content h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 32px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
}

.vitample-faq-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 5px;
    background: rgba(148, 39, 111, 0.7);
    z-index: 0;
}

.vitample-faq-content p {
    max-width: 480px;
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
}

/* FAQ Box */

.vitample-faq-list {
    border: 2px solid #3a3a3a;
    background: #222222;
    padding: 0 20px;
}

.vitample-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vitample-faq-item:last-child {
    border-bottom: 0;
}

.vitample-faq-question {
    width: 100%;
    min-height: 66px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.vitample-faq-question:hover {
    color: #d58ab9;
}

.vitample-faq-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    transition: transform 0.3s ease;
}

.vitample-faq-arrow svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.vitample-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease;
}

.vitample-faq-answer-inner {
    padding: 0 32px 18px 0;
    color: #d1d1d1;
    font-size: 12px;
    line-height: 1.65;
}

/* Open State */

.vitample-faq-item.is-open .vitample-faq-answer {
    max-height: 180px;
    opacity: 1;
}

.vitample-faq-item.is-open .vitample-faq-arrow {
    transform: rotate(180deg);
}

.vitample-faq-item.is-open .vitample-faq-question {
    color: #d58ab9;
}

/* Tablet */

@media (max-width: 900px) {
    .vitample-faq-section {
        padding: 55px 22px;
    }

    .vitample-faq-container {
        grid-template-columns: 1fr 1.15fr;
        gap: 45px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vitample-faq-section {
        padding: 45px 18px;
    }

    .vitample-faq-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vitample-faq-content {
        text-align: center;
    }

    .vitample-faq-content h2 {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .vitample-faq-content p {
        max-width: 560px;
        margin: 0 auto;
        font-size: 13px;
    }

    .vitample-faq-list {
        width: 100%;
        padding: 0 17px;
    }

    .vitample-faq-question {
        min-height: 62px;
        font-size: 13px;
    }

    .vitample-faq-answer-inner {
        padding-right: 20px;
    }
}

/* Small Mobile */

@media (max-width: 420px) {
    .vitample-faq-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .vitample-faq-content h2 {
        font-size: 27px;
    }

    .vitample-faq-list {
        padding: 0 14px;
    }

    .vitample-faq-question {
        gap: 12px;
        font-size: 12px;
    }

    .vitample-faq-answer-inner {
        font-size: 12px;
    }
}
/* ===== */

/* section ==5 */

/* =========================
   TESTIMONIALS + NEWSLETTER
========================= */

.vitample-testimonial-newsletter,
.vitample-testimonial-newsletter * {
    box-sizing: border-box;
}

.vitample-testimonial-newsletter {
    width: 100%;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* -------------------------
   Testimonials
-------------------------- */

.vitample-testimonials-section {
    padding: 34px 20px 28px;
    background: #ffffff;
}

.vitample-testimonials-container {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.vitample-testimonials-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 26px;
}

.vitample-testimonials-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 18px;
    color: #000000;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
}

.vitample-testimonials-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: rgba(90, 58, 170, 0.22);
    transform: translateX(-50%);
    z-index: -1;
}

.vitample-testimonials-heading p {
    margin: 0;
    color: #1f1f1f;
    font-size: 12px;
    line-height: 1.55;
}

.vitample-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vitample-testimonial-card {
    background: #ffffff;
    text-align: center;
    padding: 18px 18px 22px;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.12);
    min-height: 265px;
}

.vitample-testimonial-image {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
}

.vitample-testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vitample-testimonial-card h3 {
    margin: 0 0 10px;
    color: #202020;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.vitample-testimonial-stars {
    margin-bottom: 12px;
    color: #f2b21c;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.vitample-testimonial-card p {
    margin: 0 auto;
    max-width: 285px;
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.7;
}

/* -------------------------
   Newsletter
-------------------------- */

.vitample-newsletter-section {
    padding: 38px 20px 42px;
    background: #f3f3f3;
    margin-top: 40px;
}

.vitample-newsletter-container {
    width: min(100%, 1100px);
    margin: 0 auto;
    text-align: center;
}

.vitample-newsletter-container h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 14px;
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.vitample-newsletter-container h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: rgba(90, 58, 170, 0.22);
    transform: translateX(-50%);
    z-index: -1;
}

.vitample-newsletter-container p {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #111111;
    font-size: 12px;
    line-height: 1.6;
}

.vitample-newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vitample-newsletter-form input {
    width: 100%;
    max-width: 190px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #bfbfbf;
    outline: none;
    background: #ffffff;
    font-size: 12px;
    color: #111111;
    border-radius: 2px;
}

.vitample-newsletter-form input::placeholder {
    color: #9a9a9a;
}

.vitample-newsletter-form button {
    min-width: 92px;
    height: 32px;
    padding: 0 16px;
    border: 0;
    border-radius: 2px;
    background: #001b8f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.vitample-newsletter-form button:hover {
    background: #0926b4;
    transform: translateY(-1px);
}

/* -------------------------
   Responsive
-------------------------- */

@media (max-width: 900px) {
    .vitample-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .vitample-testimonials-section {
        padding: 36px 16px 22px;
    }

    .vitample-testimonials-heading h2 {
        font-size: 26px;
    }

    .vitample-testimonials-heading p {
        font-size: 13px;
    }

    .vitample-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vitample-testimonial-card {
        max-width: 420px;
        margin: 0 auto;
        min-height: auto;
    }

    .vitample-newsletter-section {
        margin-top: 26px;
        padding: 34px 16px 36px;
    }

    .vitample-newsletter-container h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .vitample-newsletter-container p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .vitample-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .vitample-newsletter-form input,
    .vitample-newsletter-form button {
        max-width: 320px;
        width: 100%;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .vitample-testimonials-heading h2,
    .vitample-newsletter-container h2 {
        font-size: 24px;
    }

    .vitample-testimonial-card {
        padding: 18px 14px 20px;
    }

    .vitample-testimonial-card p {
        font-size: 12px;
    }
}
/* ==== */

/* ===footer */
/* =========================
   FOOTER SECTION
========================= */

.vitample-footer,
.vitample-footer * {
    box-sizing: border-box;
}

.vitample-footer {
    width: 100%;
    background: #1f1f1f;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.vitample-footer-container {
    width: min(100% - 46px, 1180px);
    margin: 0 auto;
}

.vitample-footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1.2fr 1fr;
    gap: 80px;
    padding: 42px 0 38px;
}

.vitample-footer-column {
    min-width: 0;
}

.vitample-footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.vitample-footer-column p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.55;
}

.vitample-company-list,
.vitample-service-hours ul,
.vitample-footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.vitample-company-list {
    margin-top: 4px;
}

.vitample-company-list li,
.vitample-service-hours li {
    position: relative;
    padding-left: 12px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.55;
}

.vitample-company-list li::before,
.vitample-service-hours li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
}

.vitample-company-list a {
    color: #3275ff;
    text-decoration: none;
}

.vitample-company-list a:hover {
    text-decoration: underline;
}

.vitample-service-hours {
    margin-top: 18px;
}

.vitample-service-hours h4 {
    margin: 0 0 2px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.vitample-response-time {
    margin-top: 20px !important;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.vitample-response-time span {
    color: #d4d4d4;
}

/* Footer Links */

.vitample-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vitample-footer-links a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vitample-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.25s ease;
}

.vitample-footer-links a:hover {
    color: #d6aad0;
}

.vitample-footer-links a:hover::after {
    width: 100%;
}

/* Bottom Footer */

.vitample-footer-bottom {
    border-top: 1px solid #555555;
    background: #1f1f1f;
}

.vitample-footer-bottom-container {
    width: min(100% - 46px, 1180px);
    min-height: 66px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.vitample-footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

/* Trustpilot */

.vitample-trustpilot-link {
    width: fit-content;
    min-height: 31px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #444444;
    font-size: 8px;
    text-decoration: none;
}

.vitample-trustpilot-link strong {
    color: #0a6c5b;
    font-size: 8px;
}

/* Payment Cards */

.vitample-payment-methods {
    display: flex;
    justify-content: flex-end;
    gap: 3px;
}

.vitample-payment-card {
    min-width: 30px;
    height: 20px;
    padding: 0 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #bdbdbd;
    color: #123e8a;
    font-size: 7px;
    font-weight: 700;
}

/* Tablet */

@media (max-width: 900px) {
    .vitample-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vitample-footer-container,
    .vitample-footer-bottom-container {
        width: calc(100% - 32px);
    }

    .vitample-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 38px 0 34px;
    }

    .vitample-footer-column h3 {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .vitample-footer-column p,
    .vitample-company-list li,
    .vitample-service-hours li,
    .vitample-service-hours h4,
    .vitample-footer-links a {
        font-size: 13px;
    }

    .vitample-footer-links {
        gap: 14px;
    }

    .vitample-footer-bottom-container {
        min-height: auto;
        padding: 22px 0;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
    }

    .vitample-trustpilot-link {
        order: 2;
    }

    .vitample-footer-bottom p {
        order: 1;
        font-size: 12px;
    }

    .vitample-payment-methods {
        order: 3;
        justify-content: center;
    }
}

/* Small Mobile */

@media (max-width: 420px) {
    .vitample-footer-container,
    .vitample-footer-bottom-container {
        width: calc(100% - 26px);
    }

    .vitample-footer-grid {
        gap: 32px;
    }

    .vitample-footer-column p,
    .vitample-company-list li,
    .vitample-service-hours li,
    .vitample-footer-links a {
        font-size: 12px;
    }
}
/* === */

/* =========================
   ABOUT PAGE
========================= */

.vitample-about-page,
.vitample-about-page * {
    box-sizing: border-box;
}

.vitample-about-page {
    width: 100%;
    padding: 54px 20px 70px;
    background: #ffffff;
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
}

.vitample-about-page-container {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.vitample-about-page-header {
    margin-bottom: 38px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e4e4e4;
}

.vitample-about-page-header h1 {
    margin: 0;
    color: #111111;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.25;
}

.vitample-about-page-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.vitample-about-block {
    width: 100%;
}

.vitample-about-block h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.35;
}

.vitample-about-block p {
    margin: 0 0 14px;
    color: #444444;
    font-size: 15px;
    line-height: 1.8;
}

.vitample-about-block p:last-child {
    margin-bottom: 0;
}

/* CEO Note */

.vitample-ceo-note {
    padding-left: 22px;
    border-left: 3px solid #8f286f;
}

.vitample-ceo-signature {
    margin-top: 20px !important;
}

/* Company Information */

.vitample-company-section {
    padding-top: 4px;
}

.vitample-company-details {
    padding: 22px 24px;
    background: #f7f7f7;
    border: 1px solid #e3e3e3;
}

.vitample-company-details p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.vitample-company-details strong {
    color: #111111;
}

.vitample-company-details a {
    color: #8f286f;
    text-decoration: none;
}

.vitample-company-details a:hover {
    text-decoration: underline;
}

/* Opening Hours */

.vitample-opening-hours {
    margin-top: 24px;
}

.vitample-opening-hours h3 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 17px;
    font-weight: 600;
}

.vitample-opening-hours ul {
    margin: 0;
    padding-left: 20px;
}

.vitample-opening-hours li {
    margin-bottom: 7px;
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.vitample-response-info {
    margin-top: 18px !important;
    color: #222222 !important;
    font-size: 14px !important;
}

.vitample-response-info span {
    margin-right: 5px;
}

/* Tablet */

@media (max-width: 900px) {
    .vitample-about-page {
        padding: 46px 22px 60px;
    }

    .vitample-about-page-header h1 {
        font-size: 31px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vitample-about-page {
        padding: 38px 16px 48px;
    }

    .vitample-about-page-header {
        margin-bottom: 30px;
    }

    .vitample-about-page-header h1 {
        font-size: 28px;
    }

    .vitample-about-page-content {
        gap: 28px;
    }

    .vitample-about-block h2 {
        font-size: 21px;
    }

    .vitample-about-block p {
        font-size: 14px;
        line-height: 1.75;
    }

    .vitample-ceo-note {
        padding-left: 16px;
    }

    .vitample-company-details {
        padding: 18px 16px;
    }

    .vitample-company-details p,
    .vitample-opening-hours li,
    .vitample-response-info {
        font-size: 13px !important;
    }
}

/* Small Mobile */

@media (max-width: 420px) {
    .vitample-about-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .vitample-about-page-header h1 {
        font-size: 26px;
    }

    .vitample-about-block h2 {
        font-size: 20px;
    }
}


/* ====shop.html*/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
}

.vitample-shop-page {
    width: min(100% - 30px, 1450px);
    margin: 0 auto;
    padding: 16px 0 60px;
}

/* Breadcrumb */

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #777777;
    font-size: 12px;
}

.shop-breadcrumb a {
    color: #222222;
    text-decoration: none;
}

/* Main layout */

.shop-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

/* Sidebar */

.shop-sidebar {
    min-width: 0;
}

.sidebar-widget {
    margin-bottom: 32px;
    padding-bottom: 26px;
    border-bottom: 1px solid #dcdcdc;
}

.sidebar-widget h3 {
    margin: 0 0 20px;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
}

.product-search-box {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid #dddddd;
}

.product-search-box span {
    color: #999999;
}

.product-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #333333;
    font-size: 12px;
}

.category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #333333;
    font-size: 12px;
    cursor: pointer;
}

.category-list button:hover,
.category-list button.is-active {
    color: #8f286f;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 7px;
}

.price-inputs input {
    width: 62px;
    height: 32px;
    padding: 0 7px;
    border: 1px solid #cccccc;
    outline: 0;
    font-size: 11px;
}

.price-inputs button {
    height: 28px;
    padding: 0 10px;
    border: 0;
    border-radius: 12px;
    background: #252525;
    color: #ffffff;
    font-size: 10px;
    cursor: pointer;
}

.top-rated-product {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 10px;
    margin-bottom: 18px;
}

.top-rated-product img {
    width: 44px;
    height: 44px;
    grid-column: 2;
    grid-row: 1;
    object-fit: contain;
}

.top-rated-product div {
    grid-column: 1;
    grid-row: 1;
}

.top-rated-product a {
    display: block;
    margin-bottom: 3px;
    color: #333333;
    font-size: 11px;
    line-height: 1.4;
    text-decoration: none;
}

.top-rated-product strong {
    font-size: 11px;
}

.small-rating {
    margin-bottom: 3px;
    color: #f4b400;
    font-size: 9px;
}

.mobile-filter-button,
.sidebar-close-button {
    display: none;
}

/* Toolbar */

.shop-toolbar {
    min-height: 42px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shop-toolbar select {
    min-width: 160px;
    height: 35px;
    padding: 0 10px;
    border: 0;
    background: #ffffff;
    color: #333333;
    outline: 0;
    font-size: 12px;
}

.shop-toolbar p {
    margin: 0;
    color: #555555;
    font-size: 12px;
}

/* Product grid */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 14px;
}

.product-card {
    min-width: 0;
    background: #ffffff;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
    background: #f7f7f7;
    text-decoration: none;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

/*
150x150 aur 300x300 dono images
isi box ke andar properly fit hongi.
*/

.product-card:hover .product-image-wrapper img {
    transform: scale(1.04);
}

.product-card-content {
    padding: 12px 0 0;
}

.product-category {
    display: block;
    margin-bottom: 6px;
    color: #888888;
    font-size: 9px;
    text-transform: uppercase;
}

.product-card h2 {
    min-height: 36px;
    margin: 0 0 6px;
    color: #262626;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.product-price {
    margin: 0 0 12px;
    color: #111111;
    font-size: 12px;
}

.add-to-cart-button {
    width: 100%;
    min-height: 41px;
    padding: 10px;
    border: 0;
    background: #75166d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease;
}

.add-to-cart-button:hover {
    background: #4f0d49;
}

.product-card:nth-child(3n + 1) .add-to-cart-button {
    background: #07973f;
}

.product-card:nth-child(3n + 1) .add-to-cart-button:hover {
    background: #06752f;
}

.no-products-message {
    display: none;
    padding: 40px 0;
    text-align: center;
    color: #666666;
}

/* Tablet */

@media (max-width: 1050px) {
    .shop-layout {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vitample-shop-page {
        width: calc(100% - 28px);
        padding-top: 14px;
    }

    .shop-layout {
        display: block;
    }

    .mobile-filter-button {
        width: 100%;
        height: 42px;
        margin-bottom: 18px;
        display: block;
        border: 0;
        background: #8f286f;
        color: #ffffff;
        cursor: pointer;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9999;
        width: min(88%, 330px);
        height: 100vh;
        padding: 55px 22px 30px;
        overflow-y: auto;
        background: #ffffff;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.18);
        transition: left 0.3s ease;
    }

    .shop-sidebar.is-open {
        left: 0;
    }

    .sidebar-close-button {
        position: absolute;
        top: 12px;
        right: 16px;
        display: block;
        border: 0;
        background: transparent;
        color: #222222;
        font-size: 30px;
        cursor: pointer;
    }

    .shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .shop-toolbar select {
        width: 100%;
        border: 1px solid #dddddd;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
    }

    .product-image-wrapper {
        padding: 8px;
    }

    .product-card h2 {
        font-size: 12px;
    }

    .add-to-cart-button {
        min-height: 39px;
        font-size: 10px;
    }
}

/* Small mobile */

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .product-card h2 {
        min-height: auto;
        font-size: 14px;
    }

    .product-price {
        font-size: 13px;
    }
}
/* ===== */
/* =========================
   BEST SELLERS SECTION
========================= */

.vitample-best-sellers,
.vitample-best-sellers * {
    box-sizing: border-box;
}

.vitample-best-sellers {
    width: 100%;
    padding: 28px 20px 46px;
    background: #ffffff;
    border-bottom: 1px solid #d8d8d8;
    font-family: Arial, Helvetica, sans-serif;
}

.vitample-best-sellers-container {
    width: min(100%, 1450px);
    margin: 0 auto;
}

.vitample-best-sellers-heading {
    margin-bottom: 34px;
    text-align: center;
}

.vitample-best-sellers-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #04045f;
    font-size: clamp(34px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
}

.vitample-best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.vitample-best-card {
    min-width: 0;
    background: #ffffff;
}

.vitample-best-image-wrap {
    width: 100%;
    height: 320px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}

/* 150x150 aur 300x300 dono image sizes
   yahan achhe se fit hongi */
.vitample-best-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.vitample-best-card:hover .vitample-best-image-wrap img {
    transform: scale(1.03);
}

.vitample-best-content {
    padding-top: 6px;
}

.vitample-best-category {
    display: block;
    margin-bottom: 12px;
    color: #343434;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.vitample-best-content h3 {
    min-height: 78px;
    margin: 0 0 10px;
    color: #373737;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.vitample-best-price {
    margin: 0 0 18px;
    color: #272727;
    font-size: 18px;
    line-height: 1.4;
}

.vitample-best-cart-btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    border: 0;
    border-radius: 3px;
    background: #6d1767;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.vitample-best-cart-btn:hover {
    background: #52124e;
    transform: translateY(-1px);
}

/* Large tablet */

@media (max-width: 1200px) {
    .vitample-best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .vitample-best-image-wrap {
        height: 290px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vitample-best-sellers {
        padding: 28px 16px 38px;
    }

    .vitample-best-sellers-heading {
        margin-bottom: 24px;
    }

    .vitample-best-sellers-heading h2 {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .vitample-best-sellers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vitample-best-card {
        max-width: 430px;
        margin: 0 auto;
    }

    .vitample-best-image-wrap {
        height: 250px;
        padding: 8px;
    }

    .vitample-best-category {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .vitample-best-content h3 {
        min-height: auto;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .vitample-best-price {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .vitample-best-cart-btn {
        min-height: 44px;
        font-size: 14px;
    }
}

/* Small mobile */

@media (max-width: 420px) {
    .vitample-best-sellers {
        padding-left: 14px;
        padding-right: 14px;
    }

    .vitample-best-image-wrap {
        height: 220px;
    }

    .vitample-best-content h3 {
        font-size: 17px;
    }

    .vitample-best-price {
        font-size: 17px;
    }
}