/* ===============================
   RESET & BASE
================================ */

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

body {
    font-family: Arial, sans-serif;
    color: #253D4E;
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ===============================
   HEADER
================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.topbar {
    background: #f7f8fb;
    border-bottom: 1px solid #ececec;
    font-size: 13px;
    color: #26364a;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-main {
    background: #fff;
    border-bottom: 1px solid #ececec;
}

.header-main-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 220px 1fr 160px;
    align-items: center;
    gap: 28px;
}

.logo img {
    height: 50px;
    width: auto;
}

.search-area form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-area input {
    width: 100%;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 14px;
    background: #fff;
}

.search-area input:focus {
    outline: none;
    border-color: #7c4dff;
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.1);
}

.search-area button,
.btn-primary,
.btn-secondary {
    height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-area button,
.btn-primary {
    background: linear-gradient(135deg, #7c4dff, #5c2edb);
    color: #fff;
}

.btn-secondary {
    background: #f1ebff;
    color: #7f4fd3;
}

.header-cta {
    text-align: right;
}

/* ===============================
   NAVIGATION
================================ */

.main-nav {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

.menu li {
    position: relative;
    list-style: none;
}

.menu a {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.menu a:hover {
    color: #7a3cff;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    z-index: 9999;
}

.submenu li {
    width: 100%;
}

.submenu li a {
    padding: 12px 18px;
    font-weight: 600;
    white-space: nowrap;
}

.submenu li a:hover {
    background: #f6f1ff;
}

.dropdown:hover .submenu {
    display: block;
}

/* ===============================
   HERO / SLIDER
================================ */

.hero-full-slider {
    height: 460px;
    position: relative;
    overflow: hidden;
    background: #0f0f16;
}

.hero-full-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease;
}

.hero-full-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-full-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    pointer-events: none;
}

.hero-full-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    color: #fff;
}

.hero-full-content h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    margin: 20px 0;
}

.hero-full-content p {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #7047e8;
    font-size: 34px;
    line-height: 42px;
    cursor: pointer;
    box-shadow: 0 14px 38px rgba(16, 14, 40, 0.18);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.hero-dot.active {
    width: 34px;
    background: #fff;
}

/* ===============================
   SECTIONS
================================ */

.home-categories,
.featured-products,
.how-it-works {
    padding: 70px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-head p {
    color: #667085;
}

/* ===============================
   CATEGORY CARDS
================================ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-box {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.category-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.category-image {
    width: 100%;
    height: 220px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.category-content {
    padding: 20px;
}

.category-content h3,
.category-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.category-link {
    font-size: 13px;
    color: #7a5af8;
    font-weight: 600;
}

/* ===============================
   CATEGORY PAGE
================================ */

.category-hero {
    padding: 55px 0;
    text-align: center;
    background: linear-gradient(135deg, #f7f3ff, #ffffff);
}

.category-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.category-hero p {
    color: #667085;
}

.category-content {
    padding: 50px 0;
}

.category-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0 0 16px;
    flex-wrap: wrap;
}

.category-toolbar input,
.category-toolbar select {
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
    background: #fff;
}

.category-toolbar input {
    width: 260px;
}

.category-toolbar button {
    height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #7a3cff;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.category-toolbar button:hover {
    background: #5f28d8;
}

.category-result-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #444;
}

.category-result-info strong {
    color: #7a3cff;
    font-size: 18px;
}

.sub-category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.sub-category-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f6f3ff;
    color: #5c2edb;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #e6dcff;
}

.sub-category-list a:hover,
.sub-category-list a.active {
    background: #6c3cff;
    color: #fff;
}

/* ===============================
   PRODUCT GRID & CARDS
================================ */

.vira-product-grid,
.product-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.product-card,
.vira-product-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover,
.vira-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,.10);
    border-color: rgba(108,43,217,.20);
}

.product-card__image {
    height: 260px;
    padding: 18px;
    background: #f4f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.product-card__body {
    padding: 16px;
}

.product-card__title {
    min-height: 44px;
    margin-bottom: 10px;
}

.product-card__title a,
.product-card__title {
    font-size: 16px;
    line-height: 1.35;
    color: #161616;
    font-weight: 700;
}

.product-card__price {
    margin-top: 10px;
    min-height: 28px;
}

.product-card__price strong {
    font-size: 20px;
    color: #6c2bd9;
    font-weight: 800;
}

.product-card__price del {
    margin-left: 8px;
    color: #999;
    font-size: 14px;
}

.product-card__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.product-card__button,
.product-card__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.product-card__button {
    min-width: 130px;
    background: #111;
    color: #fff;
}

.product-card__button:hover {
    background: #6c2bd9;
}

.product-card__whatsapp {
    min-width: 105px;
    background: #25d366;
    color: #fff;
}

/* ===============================
   PRODUCT DETAIL
================================ */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 50px auto;
}

.product-detail__gallery,
.product-main-image {
    width: 100%;
}

.product-main-image {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

.product-main-image img {
    width: 100%;
    height: 520px;
    object-fit: contain;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-thumb {
    width: 74px;
    height: 74px;
    padding: 3px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.product-thumb.active {
    border-color: #6c3cff;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-buy-card {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.product-detail__info h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.product-detail__price strong {
    font-size: 28px;
    color: #6c3cff;
    font-weight: 800;
}

.product-badge {
    display: inline-block;
    background: #e9f9ef;
    color: #168a3a;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-option {
    margin-top: 22px;
}

.product-option > label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.color-options,
.color-check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
}

.color-chip input {
    display: none;
}

.color-box {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #999;
}

.custom-color-input,
.product-option input,
.product-option select {
    width: 100%;
    max-width: 260px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.size-qty-list {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.size-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
}

.size-label {
    background: #f3f3f3;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.size-qty-input {
    width: 100px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.product-features {
    margin-top: 24px;
    padding: 22px;
    background: #f8f9fb;
    border-radius: 16px;
    border: 1px solid #eef0f4;
}

.product-features h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.product-features ul {
    padding-left: 18px;
}

.product-features li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.product-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    height: 52px;
    padding: 0 24px;
    background: #25D366;
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
}

.product-extra-info {
    margin-top: 18px;
    background: #f8fafc;
    border: 1px dashed #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

/* ===============================
   QUOTE / ABOUT / CONTACT
================================ */

.quote-hero,
.about-hero,
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f3ff 0%, #ffffff 55%, #f4fff8 100%);
}

.quote-wrap,
.about-hero-inner,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-info h1,
.about-hero h1,
.contact-hero h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.quote-info p,
.about-hero p,
.contact-hero p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.quote-card,
.about-hero-card,
.contact-info,
.contact-form-box {
    background: #fff;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(20, 20, 60, 0.12);
    border: 1px solid #eee;
}

.quote-form,
.contact-form-box form {
    display: grid;
    gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
}

.quote-form button,
.contact-form-box button {
    border: 0;
    border-radius: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #25D366, #18b957);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

/* ===============================
   FOOTER & FLOATING WHATSAPP
================================ */

.site-footer {
    padding: 40px 0;
    border-top: 1px solid #ececec;
    background: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .header-main-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 0;
        text-align: center;
    }

    .header-cta {
        display: none;
    }

    .hero-full-slider {
        height: 320px;
    }

    .hero-full-content h1 {
        font-size: 38px;
    }

    .hero-arrow {
        display: none;
    }

    .category-grid,
    .quote-wrap,
    .about-hero-inner,
    .contact-grid,
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-buy-card {
        position: static;
    }

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

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .site-header {
        position: relative;
    }

    .logo img {
        height: 44px;
        margin: 0 auto;
    }

    .search-area,
    .search-area form {
        width: 100%;
    }

    .search-area form {
        flex-direction: column;
        padding: 0 12px;
    }

    .search-area input,
    .search-area button {
        height: 46px;
        border-radius: 12px;
    }

    .main-nav {
        overflow-x: visible;
    }

    .menu {
        justify-content: flex-start;
        gap: 22px;
        padding: 14px 16px;
        white-space: nowrap;
        overflow-x: auto;
    }

    .dropdown {
        position: relative;
    }

    .dropdown .submenu {
        display: none;
    }

    .dropdown.open .submenu {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 220px;
        background: #fff;
        border-radius: 14px;
        padding: 10px 0;
        box-shadow: 0 18px 40px rgba(0,0,0,.16);
        z-index: 999999;
    }

    .dropdown.open .submenu a {
        padding: 13px 16px;
        background: #fff;
        color: #111;
    }

    .dropdown:hover .submenu {
        display: none;
    }

    .dropdown.open:hover .submenu {
        display: flex !important;
    }

    .hero-full-slider {
        height: 240px;
    }

    .hero-full-slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-full-content {
        display: none;
    }

    .hero-dots {
        bottom: 14px;
    }

    .home-categories,
    .featured-products,
    .how-it-works {
        padding: 45px 0;
    }

    .section-head h2,
    .category-hero h1 {
        font-size: 28px;
    }

    .category-grid,
    .vira-product-grid,
    .product-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 10px;
    }

    .category-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .category-toolbar input,
    .category-toolbar select,
    .category-toolbar button {
        width: 100%;
    }

    .product-card,
    .vira-product-card {
        max-width: 100%;
    }

    .product-main-image img {
        height: 360px;
    }

    .product-detail {
        margin: 30px auto;
        gap: 24px;
    }

    .quote-hero,
    .about-hero,
    .contact-hero {
        padding: 50px 0;
    }

    .quote-info h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .menu {
        gap: 18px;
        padding: 13px 14px;
    }

    .hero-full-slider {
        height: 220px;
    }

    .product-card__image {
        height: 240px;
    }
}

/* PRODUCT CARD IMAGE SLIDER FIX */
.product-card__image.product-card-slider {
    position: relative !important;
    height: 260px !important;
    overflow: hidden !important;
    background: #f4f4f6 !important;
    display: block !important;
}

.product-card__image.product-card-slider img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: block !important;
    transition: opacity .35s ease !important;
}

.product-card__image.product-card-slider img.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* SIMPLE HERO SLIDER */
.vira-simple-slider {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: 24px;
    margin: 30px auto;
}

.vira-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease;
}

.vira-slide.active {
    opacity: 1;
    visibility: visible;
}

.vira-slide-btn {
    position: absolute;
    left: 80px;
    bottom: 80px;
    background: #6c3cf0;
    color: #fff;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 700;
}

.vira-slider-prev,
.vira-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 28px;
    z-index: 5;
}

.vira-slider-prev {
    left: 20px;
}

.vira-slider-next {
    right: 20px;
}

@media (max-width: 768px) {
    .vira-simple-slider {
        height: 260px;
        border-radius: 16px;
    }

    .vira-slide-btn {
        left: 20px;
        bottom: 20px;
        padding: 10px 18px;
        font-size: 14px;
    }
}/* ===============================
   MINIMAL PRODUCT CARD ACTIONS
================================ */

.vira-product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
}

.product-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
}

.product-card__actions,
.product-card__actions--icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px !important;
    margin-top: 18px !important;
}

.product-card__cart-form {
    margin: 0 !important;
    padding: 0 !important;
}

.product-icon-btn {
    position: relative !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: transform .2s ease, color .2s ease !important;
}

.product-icon-btn svg {
    width: 25px !important;
    height: 25px !important;
    stroke: currentColor !important;
}

.product-icon-btn:hover {
    color: #6c3cff !important;
    transform: translateY(-2px) !important;
}

.cart-plus {
    position: absolute !important;
    top: 0 !important;
    right: -3px !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    background: #6c3cff !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-card__whatsapp,
.product-card__button,
.product-cart-btn,
.product-view-btn {
    display: none !important;
}/* FINAL ICON SIZE + GRID FIX */
.vira-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
}

.product-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
}

.product-card__actions--icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 26px !important;
    margin-top: 20px !important;
}

.product-icon-btn {
    width: 54px !important;
    height: 54px !important;
    color: #111 !important;
    background: transparent !important;
}

.product-icon-btn svg {
    width: 38px !important;
    height: 38px !important;
    stroke-width: 2.3 !important;
}

.cart-plus {
    top: 2px !important;
    right: 0 !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 12px !important;
}.product-icon-btn svg{
    width:40px !important;
    height:40px !important;
}.category-card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
    margin-top:30px;
}

.category-card{
    display:block;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.25s;
}

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

.category-card-image{
    height:260px;
    overflow:hidden;
}

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

.category-card-content{
    padding:25px;
    text-align:center;
}

.category-card-content h3{
    margin:0 0 10px;
    font-size:24px;
    font-weight:700;
}

.category-card-content span{
    color:#6d35ff;
    font-weight:600;
}.category-card-grid {
    max-width: 1320px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 28px;
}

.category-card {
    display: block;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 45px rgba(0,0,0,.12);
}

.category-card-image {
    width: 100%;
    height: 260px;
    background: #f5f5f7;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.category-card-content {
    min-height: 150px;
    padding: 38px 20px;
    text-align: center;
}

.category-card-content h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.category-card-content span {
    color: #6d35ff;
    font-weight: 700;
}.vira-cart-alert{
    position:fixed;
    top:90px;
    right:20px;
    background:#16a34a;
    color:#fff;
    padding:14px 18px;
    border-radius:10px;
    z-index:99999;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.3s;
}

.vira-cart-alert a{
    color:#fff;
    text-decoration:underline;
    font-weight:700;
}