/* =====================================================
   YAQEEN NATURALS
   COMPLETE STYLE.CSS
===================================================== */


/* =====================================================
   BASIC RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    width: 100%;
    min-height: 75px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 6%;

    gap: 25px;

    border-bottom: 1px solid #eeeeee;

    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 27px;
    font-weight: bold;
    white-space: nowrap;
    color: #222;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}


/* =====================================================
   SEARCH BOX
===================================================== */

.search-box {
    display: flex;

    width: 45%;
    height: 44px;
}

.search-box input {
    width: 100%;

    padding: 0 15px;

    border: 1px solid #cccccc;

    outline: none;

    font-size: 15px;
}

.search-box input:focus {
    border-color: #222;
}

.search-box button {
    width: 100px;

    border: none;

    background: #222;

    color: white;

    cursor: pointer;

    font-size: 15px;

    transition: 0.3s;
}

.search-box button:hover {
    background: #444;
}


/* =====================================================
   HEADER RIGHT
===================================================== */

.header-right {
    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;
}

.header-right span,
.header-right a {
    cursor: pointer;

    transition: 0.3s;

    color: inherit;

    text-decoration: none;
}

.header-right span:hover,
.header-right a:hover {
    color: #666;
}

.cart-count {
    cursor: pointer;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar {
    width: 100%;

    background: #222;

    padding: 14px 6%;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.navbar a {
    color: white;

    text-decoration: none;

    font-size: 15px;

    transition: 0.3s;
}

.navbar a:hover {
    color: #ccc;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    width: 100%;

    min-height: 480px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

    position: relative;

    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.70),
        rgba(0, 0, 0, 0.30)
    );

    pointer-events: none;
}

.hero-slideshow,
.hero-slide {
    position: absolute;

    inset: 0;
}

.hero-slide {
    opacity: 0;

    background: #d8cbb4;

    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center;

    display: block;
}

.hero-content {
    max-width: 850px;

    padding: 20px;

    position: relative;

    z-index: 1;
}

.hero-small {
    font-size: 14px;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 52px;

    margin-bottom: 15px;

    line-height: 1.2;
}

.hero-text {
    font-size: 20px;

    margin-bottom: 28px;
}

.shop-button {
    padding: 14px 35px;

    border: none;

    background: white;

    color: #222;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.shop-button:hover {
    background: #eee;

    transform: translateY(-2px);
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.section {
    width: 100%;

    padding: 60px 6%;
}

.section h2 {
    text-align: center;

    font-size: 32px;

    margin-bottom: 38px;
}


/* =====================================================
   CATEGORY
===================================================== */

.category-container {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}

.category {
    background: white;

    padding: 25px 15px;

    text-align: center;

    border: 1px solid #eeeeee;

    cursor: pointer;

    transition: 0.3s;
}

.category:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 45px;

    margin-bottom: 12px;
}

.category h3 {
    font-size: 17px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.product-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    align-items: stretch;
}

.product-card {
    background: white;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {
    width: 100%;

    height: 310px;

    padding: 14px;

    box-sizing: border-box;

    overflow: hidden;

    background: linear-gradient(135deg, #f8f4ec, #f1eee7);
}

.product-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    border-radius: 14px;

    display: block;

    background: #fff;

    transition: 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.product-info {
    padding: 18px;

    display: flex;

    flex-direction: column;

    flex: 1;
}

.product-info h3 {
    font-size: 19px;

    margin-bottom: 7px;
}

.product-description {
    min-height: 66px;

    margin: 0 0 12px;

    color: #6d6d6d;

    font-size: 13px;

    line-height: 1.55;
}

.stock-status {
    display: inline-block;

    align-self: flex-start;

    margin-bottom: 10px;

    color: #2e7d32;

    font-size: 12px;

    font-weight: bold;
}

.stock-status.out-of-stock {
    color: #c62828;
}

.cart-button:disabled,
.buy-button:disabled {
    background: #cfcfcf;

    color: #777;

    cursor: not-allowed;
}

.coming-soon-card {
    cursor: default;
}

.coming-soon-card:hover {
    transform: translateY(-3px);
}

.coming-soon-image {
    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #f7f2e8, #e8f0e7);
}

.coming-soon-icon {
    font-size: 72px;

    filter: grayscale(0.15);
}

.coming-soon-label {
    align-self: flex-start;

    margin-bottom: 12px;

    padding: 6px 10px;

    border-radius: 999px;

    background: #e7f0e5;

    color: #41603d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.coming-soon-text {
    margin: 5px 0 0;

    color: #777;

    font-size: 14px;

    line-height: 1.5;
}

.rating {
    font-size: 14px;

    margin-bottom: 8px;
}

.old-price {
    color: #999;

    text-decoration: line-through;

    font-size: 14px;

    margin-bottom: 2px;
}

.price {
    font-size: 22px;

    font-weight: bold;

    margin-bottom: 14px;
}


/* =====================================================
   PRODUCT BUTTONS
===================================================== */

.cart-button,
.buy-button {
    width: 100%;

    padding: 12px;

    border: none;

    cursor: pointer;

    font-size: 15px;

    font-weight: bold;

    margin-top: 7px;

    transition: 0.3s;
}

.cart-button {
    background: #222;

    color: white;
}

.cart-button:hover {
    background: #444;
}

.buy-button {
    background: #eee;

    color: #222;
}

.buy-button:hover {
    background: #ddd;
}


/* =====================================================
   PRODUCT VIDEO SECTION
===================================================== */

.product-video-section {
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);

    padding: 70px 6%;
}

.section-heading {
    text-align: center;

    margin-bottom: 28px;
}

.mini-tag {
    display: inline-block;

    margin: 0 0 8px;

    padding: 7px 14px;

    border-radius: 999px;

    background: #f4e8d1;

    color: #7b4d16;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.12em;
}

.section-heading h2 {
    margin: 0;

    font-size: 36px;
}

.product-video-grid {
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.product-video-card {
    background: #fff;

    border: 1px solid #eee;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.product-video-card video {
    width: 100%;

    aspect-ratio: 4 / 5;

    display: block;

    object-fit: contain;

    background: #eee7da;
}

.product-video-card h3 {
    margin: 0;

    padding: 14px 16px 16px;

    color: #2d2b27;

    font-size: 17px;
}


/* =====================================================
   WHY US
===================================================== */

.why-us {
    background: white;

    padding: 65px 6%;

    text-align: center;
}

.why-us h2 {
    font-size: 32px;

    margin-bottom: 40px;
}

.why-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.why-box {
    padding: 30px;

    border: 1px solid #eee;

    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.07);
}

.why-icon {
    font-size: 40px;

    margin-bottom: 12px;
}

.why-box h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.why-box p {
    color: #666;

    font-size: 15px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #222;

    color: white;

    text-align: center;

    padding: 45px 20px;
}

.footer-content h3 {
    font-size: 23px;

    margin-bottom: 10px;
}

.footer-content p {
    color: #ddd;

    font-size: 14px;

    margin-top: 8px;
}

.contact-details {
    max-width: 1000px;

    margin: 28px auto 0;

    display: flex;

    flex-wrap: nowrap;

    gap: 14px;

    overflow-x: auto;

    padding-bottom: 4px;
}

.contact-item {
    flex: 1 0 170px;

    min-width: 170px;

    padding: 14px 10px;

    border: 1px solid #444;

    border-radius: 10px;

    white-space: nowrap;
}

.contact-item strong,
.contact-item a,
.contact-item span {
    display: block;
}

.contact-item strong {
    margin-bottom: 7px;

    color: #f4d39a;

    font-size: 13px;
}

.contact-item a,
.contact-item span {
    color: #eee;

    font-size: 13px;

    line-height: 1.5;
    
    overflow-wrap: anywhere;
}

.contact-item .opening-hours {
    white-space: nowrap;

    font-size: 12px;
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    color: #f4d39a;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 20px;

    flex-wrap: wrap;
}

.footer-links a {
    color: white;

    text-decoration: none;

    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 25px !important;

    border-top: 1px solid #444;

    padding-top: 20px;
}


/* =====================================================
   CART OVERLAY
===================================================== */

.cart-overlay {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 9998;
}

.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =====================================================
   CART SIDE PANEL
===================================================== */

.cart-panel {
    position: fixed;

    top: 0;
    right: -450px;

    width: 430px;

    max-width: 100%;

    height: 100vh;

    background: white;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    transition: right 0.35s ease;

    box-shadow:
        -5px 0 25px rgba(0, 0, 0, 0.15);
}

.cart-panel.active {
    right: 0;
}


/* =====================================================
   CART HEADER
===================================================== */

.cart-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    font-size: 23px;
}

.close-cart {
    width: 38px;

    height: 38px;

    border: none;

    background: #eee;

    font-size: 27px;

    cursor: pointer;

    border-radius: 50%;
}

.close-cart:hover {
    background: #ddd;
}


/* =====================================================
   CART ITEMS
===================================================== */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 15px;
}

.empty-cart {
    text-align: center;

    color: #777;

    padding: 50px 20px;

    font-size: 16px;
}


/* =====================================================
   CART ITEM
===================================================== */

.cart-item {
    display: flex;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 75px;

    height: 75px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 5px;

    background: #eee;
}

.cart-item-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 15px;

    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: bold;

    margin-bottom: 8px;
}


/* =====================================================
   QUANTITY
===================================================== */

.quantity-box {
    display: flex;

    align-items: center;

    gap: 7px;
}

.quantity-button {
    width: 28px;

    height: 28px;

    border: 1px solid #ccc;

    background: white;

    cursor: pointer;

    font-size: 17px;
}

.quantity-button:hover {
    background: #eee;
}

.quantity {
    min-width: 22px;

    text-align: center;

    font-weight: bold;
}


/* =====================================================
   REMOVE BUTTON
===================================================== */

.remove-item {
    border: none;

    background: none;

    color: #d00;

    cursor: pointer;

    font-size: 13px;

    margin-top: 5px;
}

.remove-item:hover {
    text-decoration: underline;
}


/* =====================================================
   CART FOOTER
===================================================== */

.cart-footer {
    border-top: 1px solid #eee;

    padding: 18px;
}

.cart-total {
    display: flex;

    justify-content: space-between;

    font-size: 20px;

    font-weight: bold;

    margin-bottom: 15px;
}

.checkout-button {
    width: 100%;

    padding: 14px;

    background: #222;

    color: white;

    border: none;

    cursor: pointer;

    font-size: 16px;

    font-weight: bold;
}

.checkout-button:hover {
    background: #444;
}


/* =====================================================
   CHECKOUT OVERLAY
===================================================== */

.checkout-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 10000;
}

.checkout-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =====================================================
   CHECKOUT BOX
===================================================== */

.checkout-box {
    width: 100%;

    max-width: 550px;

    max-height: 90vh;

    overflow-y: auto;

    background: white;

    padding: 30px;

    position: relative;

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}

.checkout-box h2 {
    text-align: center;

    margin-bottom: 25px;

    font-size: 28px;
}

.checkout-close {
    position: absolute;

    top: 12px;

    right: 15px;

    width: 35px;

    height: 35px;

    border: none;

    border-radius: 50%;

    background: #eee;

    font-size: 24px;

    cursor: pointer;
}

.checkout-close:hover {
    background: #ddd;
}


/* =====================================================
   FORM
===================================================== */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    font-weight: bold;

    margin-bottom: 7px;

    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 12px;

    border: 1px solid #ccc;

    outline: none;

    font-size: 15px;

    font-family: Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #222;
}

.form-group textarea {
    height: 100px;

    resize: vertical;
}

.place-order-button {
    width: 100%;

    padding: 14px;

    background: #222;

    color: white;

    border: none;

    cursor: pointer;

    font-size: 16px;

    font-weight: bold;

    margin-top: 5px;
}

.place-order-button:hover {
    background: #444;
}


/* =====================================================
   SUCCESS OVERLAY
===================================================== */

.success-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 10001;
}

.success-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =====================================================
   SUCCESS BOX
===================================================== */

.success-box {
    width: 100%;

    max-width: 550px;

    background: white;

    padding: 35px;

    text-align: center;

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}

.success-icon {
    width: 65px;

    height: 65px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #222;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 35px;

    font-weight: bold;
}

.success-box h2 {
    margin-bottom: 10px;

    font-size: 25px;
}

.success-box > p {
    color: #666;

    margin-bottom: 20px;
}

.order-details {
    text-align: left;

    background: #f7f7f7;

    padding: 18px;

    margin-bottom: 20px;

    border-radius: 5px;
}

.order-details p {
    margin-bottom: 9px;

    font-size: 14px;

    line-height: 1.5;
}

.order-details p:last-child {
    margin-bottom: 0;
}

.continue-button {
    width: 100%;

    padding: 13px;

    background: #222;

    color: white;

    border: none;

    cursor: pointer;

    font-size: 15px;

    font-weight: bold;
}

.continue-button:hover {
    background: #444;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .header {
        padding: 15px 4%;
    }

    .navbar {
        padding: 14px 4%;
    }

    .section {
        padding: 50px 4%;
    }

    .category-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .header {
        flex-wrap: wrap;
    }

    .search-box {
        width: 100%;

        order: 3;
    }

    .header-right {
        margin-left: auto;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 17px;
    }

    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-video-grid {
        grid-template-columns: 1fr;
    }

    .product-video-card video {
        aspect-ratio: 16 / 10;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .cart-panel {
        width: 400px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .logo {
        font-size: 22px;
    }

    .header-right {
        gap: 10px;

        font-size: 13px;
    }

    .navbar {
        gap: 15px;
    }

    .navbar a {
        font-size: 13px;
    }

    .hero {
        min-height: 350px;
    }

    .hero-small {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 15px;
    }

    .section {
        padding: 45px 4%;
    }

    .section h2 {
        font-size: 27px;
    }

    .category-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 280px;
    }

    .why-us h2 {
        font-size: 27px;
    }

    .cart-panel {
        width: 100%;

        right: -100%;
    }

    .checkout-box {
        padding: 25px 18px;
    }

    .success-box {
        padding: 25px 18px;
    }
}
/* =====================================================
   CHECKOUT ORDER SUMMARY
===================================================== */

.checkout-order-summary {
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.checkout-order-summary h3 {
    font-size: 19px;
    margin-bottom: 15px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}

.checkout-summary-item:last-child {
    border-bottom: none;
}

.checkout-summary-item-name {
    font-weight: 600;
}

.checkout-summary-item-price {
    font-weight: bold;
    white-space: nowrap;
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #ddd;
    font-size: 18px;
}

.checkout-summary-total strong {
    font-size: 21px;
}

.delivery-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    background: #fff3df;
    border: 1px solid #f0d89d;
    border-radius: 6px;
    padding: 10px 12px;
}

/* =====================================================
   PRODUCT SIZE / QUANTITY POPUP
===================================================== */

.product-option-overlay {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    padding: 20px !important;

    background: rgba(0, 0, 0, 0.65) !important;

    z-index: 99999 !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transition: 0.3s ease !important;
}

.product-option-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.product-option-box {
    width: 430px !important;
    max-width: 100% !important;

    background: #ffffff !important;

    padding: 30px !important;

    border-radius: 10px !important;

    position: relative !important;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.30) !important;
}

.product-option-box h2 {
    margin: 0 0 20px !important;

    font-size: 25px !important;

    color: #222 !important;
}

.product-option-close {
    position: absolute !important;

    top: 10px !important;
    right: 12px !important;

    width: 35px !important;
    height: 35px !important;

    border: none !important;

    border-radius: 50% !important;

    background: #eeeeee !important;

    color: #222 !important;

    font-size: 24px !important;

    cursor: pointer !important;
}

.product-option-close:hover {
    background: #222 !important;
    color: white !important;
}

.option-label {
    display: block !important;

    font-size: 14px !important;

    font-weight: bold !important;

    margin-bottom: 10px !important;
}

.size-options {
    display: grid !important;

    grid-template-columns: repeat(3, 1fr) !important;

    gap: 10px !important;

    margin-bottom: 18px !important;
}

.size-option {
    min-height: 75px !important;

    padding: 9px 5px !important;

    border: 1px solid #cccccc !important;

    border-radius: 6px !important;

    background: white !important;

    color: #222 !important;

    cursor: pointer !important;

    font-size: 13px !important;

    text-align: center !important;
}

.size-option:hover {
    border-color: #222 !important;
}

.size-option.active {
    background: #222 !important;

    color: white !important;

    border-color: #222 !important;
}

.variant-old-price {
    color: #999 !important;

    text-decoration: line-through !important;

    margin-right: 4px !important;
}

.variant-sale-price {
    font-weight: bold !important;

    margin-right: 4px !important;
}

.variant-discount {
    display: inline-block !important;

    margin-top: 4px !important;

    padding: 2px 5px !important;

    background: #d32f2f !important;

    color: white !important;

    border-radius: 3px !important;

    font-size: 10px !important;

    font-weight: bold !important;
}

.option-price {
    padding: 12px !important;

    margin-bottom: 20px !important;

    background: #f5f5f5 !important;

    border-radius: 6px !important;

    font-size: 16px !important;
}

.option-old-price {
    color: #999 !important;

    text-decoration: line-through !important;

    margin-right: 6px !important;
}

.option-price strong {
    font-size: 21px !important;

    margin-right: 6px !important;
}

.option-discount {
    display: inline-block !important;

    padding: 3px 6px !important;

    background: #d32f2f !important;

    color: white !important;

    border-radius: 4px !important;

    font-size: 10px !important;

    font-weight: bold !important;
}

.quantity-selector {
    display: flex !important;

    justify-content: center !important;

    align-items: center !important;

    gap: 18px !important;

    margin-bottom: 22px !important;
}

.quantity-selector button {
    width: 40px !important;
    height: 40px !important;

    border: 1px solid #ccc !important;

    background: #f5f5f5 !important;

    color: #222 !important;

    border-radius: 5px !important;

    font-size: 22px !important;

    cursor: pointer !important;
}

.quantity-selector button:hover {
    background: #222 !important;

    color: white !important;
}

#optionQuantity {
    min-width: 30px !important;

    text-align: center !important;

    font-size: 18px !important;

    font-weight: bold !important;
}

.confirm-add-button {
    width: 100% !important;

    padding: 14px !important;

    border: none !important;

    border-radius: 7px !important;

    background: #222 !important;

    color: white !important;

    font-size: 16px !important;

    font-weight: bold !important;

    cursor: pointer !important;
}

.confirm-add-button:hover {
    background: #444 !important;
}

@media (max-width: 500px) {

    .product-option-box {
        width: 100% !important;

        padding: 24px 18px !important;
    }

    .size-options {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}