/* Generated bundle — do not edit directly.
   Regenerate with bin/build-style-bundles.sh after editing a source file below. */

/* ---- common.css ---- */
/* common.css */

/* 1. Root Variables */
:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-black: #000000;
    --color-white: #ffffff;

    --color-primary: #000000;
    --color-secondary: #444444;
    --color-accent: #f5f5f5;

    --transition-fast: 0.3s ease;
    --border-radius: 8px;

    --color-orangered: #ff4500;

    --color-highlight: #ff6b35;
    --color-success: #4caf50;
    --color-slot-bg: #f8f8f8;
    --color-slot-hover: #e3f2fd;
    --color-slot-selected: #bbdefb;

    --g-gap: 18px;
    --card-radius: 14px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 2. Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
    padding-left: 0;
}

/* 3. Container Class */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4. Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: none;
}

/* Apply consistent appearance to buttons and anchors */
button.btn,
a.btn {
    appearance: none;
    border: none;
    text-decoration: none;
    border: 2px solid var(--color-black);
    font-weight: 700;
}

/* Primary */
.btn-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

/* Secondary */
.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

/* Outline */
.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-danger {
    background-color: transparent;
    color: var(--color-orangered);
    border: 2px solid var(--color-orangered) !important;
}

.btn-danger:hover {
    background-color: var(--color-orangered);
    color: var(--color-white);

}

.main-section {
    margin: 120px 0;
}

.mandatory {
    color: var(--color-orangered);
}

.f-22 {
    font-size: 22px;
}

.h-100vh {
    height: 100vh !important;
}

.h-50vh {
    height: 50vh !important;
}

.center {
    text-align: center;
}

.html-main-section{
    margin: 80px 0;
}

/* 5. Respect the OS-level "reduce motion" preference across the whole
   storefront (hero, cards, review grid, partner ticker, etc. all animate
   on load) rather than fixing it per component. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---- message.css ---- */
/* ================================
   Custom Flash Message Styles
================================= */
.custom-alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    position: fixed;
    right: 5px;
    top: 120px;
    font-size: 16px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 8px #0000001a;
    color: #fff;
    gap: 10px;
    overflow: hidden;
    z-index: 99999;
}

/* Title inside alert */
.custom-alert strong {
    margin-right: 10px;
}

/* Success, Error, Warning, Info */
.custom-alert-success {
    background-color: #28a745;
}

.custom-alert-error {
    background-color: #dc3545;
}

.custom-alert-warning {
    background-color: #ffc107;
    color: #212529;
}

.custom-alert-info {
    background-color: #17a2b8;
}

/* Close button */
.custom-close-btn {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 15px;
    padding: 5px;
    font-weight: bold;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.custom-close-btn:hover {
    color: #ffffffb3;
}

/* Progress bar */
.custom-alert .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform linear;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    .custom-alert {
        max-width: 100%;
        right: 1px;
    }
}

/* ---- navbar.css ---- */
/* ===============================
   NAVBAR BASE STYLES
================================= */
.navbar {
    --navbar-height: 90px;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: box-shadow .3s ease;
}

.navbar.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: var(--navbar-height);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: transform .25s ease;
}

.brand:hover .logo-img {
    transform: scale(1.05);
}

/* ===============================
   LINKS
================================= */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    padding: 8px 2px;
    transition: color .25s ease;
}

/* Animated underline that doesn't shift layout. Excludes .dropdown-trigger,
   which already owns ::after for its chevron - it gets a ::before underline
   below instead so the two pseudo-elements don't collide on one node. */
.nav-links a:not(.dropdown-trigger)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orangered);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-links a:hover {
    color: var(--color-orangered);
}

.nav-links a:not(.dropdown-trigger):hover::after {
    transform: scaleX(1);
}

.nav-links a.active,
.nav-links .dropdown-trigger.active {
    color: var(--color-orangered);
    font-weight: 600;
}

.nav-links a.active:not(.dropdown-trigger)::after {
    transform: scaleX(1);
}

.nav-links .dropdown {
    position: relative;
    display: flex;
    align-items: center;
    /* Stretch to the full navbar height so the mouse can travel straight down
       from the trigger into the mega panel without ever leaving :hover. */
    align-self: stretch;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
}

/* Underline for the trigger. Stays lit for as long as the dropdown/mega
   panel is open, not just while the cursor is over the trigger text. */
.dropdown-trigger::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orangered);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.dropdown:hover .dropdown-trigger::before,
.dropdown:focus-within .dropdown-trigger::before,
.dropdown.open .dropdown-trigger::before,
.dropdown-trigger.active::before {
    transform: scaleX(1);
}

/* ===============================
   MEGA MENU (anchored to navbar bottom)
================================= */
.mega-dropdown {
    position: fixed;
    top: var(--navbar-height);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 1200px;
    max-width: min(95vw, 1200px);
    max-height: calc(100vh - var(--navbar-height) - 24px);
    padding: 36px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #111;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    color: var(--color-white);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .25);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 1001;
}

/* Dark gradient overlay so background photo stays readable */
.mega-dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .82) 45%, rgba(0, 0, 0, .55) 100%);
    z-index: 0;
}

/* Content inside mega menu */
.mega-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mega-left h4 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-orangered);
    display: inline-block;
}

.mega-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-left ul {
    margin-top: 18px;
}

.mega-content li {
    margin-bottom: 14px;
}

.mega-content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.mega-content a::before {
    content: "\2192";
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: opacity .2s ease, left .2s ease;
}

.mega-content a:hover {
    color: var(--color-orangered);
    padding-left: 16px;
}

/* The top-nav animated underline (.nav-links a::after) would otherwise leak
   in here too, since these links are technically descendants of .nav-links. */
.mega-dropdown .mega-content a::after {
    content: none;
}

.mega-content a:hover::before {
    left: 0;
    opacity: 1;
}

/* Show dropdown on hover / focus / open */
.nav-links .dropdown:hover .mega-dropdown,
.nav-links .dropdown:focus-within .mega-dropdown,
.nav-links .dropdown.open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ===============================
   NAV ACTIONS + HAMBURGER
================================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-actions img {
    height: 28px;
    width: 28px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    width: 28px;
    height: 22px;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    z-index: 1100;
}

.nav-toggle span {
    background: var(--color-black);
    height: 2.5px;
    width: 100%;
    border-radius: 2px;
    transition: all .3s ease;
}

.nav-toggle.open span {
    background: var(--color-orangered);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cart-icon {
    position: relative;
    display: inline-flex;
    transition: transform .2s ease;
}

.cart-icon:hover {
    transform: translateY(-2px);
}

.cart-icon img {
    display: block;
    width: 28px;
    height: 28px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-orangered);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 50%;
    border: 1px solid #fff;
    min-width: 18px;
    text-align: center;
}

/* ===============================
   PROFILE DROPDOWN
================================= */
.profile-dropdown {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.profile-trigger img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .08);
}

.profile-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 190px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 1010;
}

.profile-menu li {
    padding: 2px 8px;
}

.profile-menu li a,
.profile-menu li button {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 600;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s ease, color .2s ease;
}

.profile-menu li a:hover,
.profile-menu li button:hover {
    background: var(--color-accent);
    color: var(--color-orangered);
}

@media (min-width: 769px) {
    .profile-dropdown:hover .profile-menu,
    .profile-dropdown:focus-within .profile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .profile-menu {
        width: 200px;
    }

    .profile-dropdown.open .profile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ==============================
   Tablet / Small Laptop
================================= */
@media (max-width: 1180px) and (min-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .mega-dropdown {
        width: 92vw;
        max-width: 760px;
        padding: 28px;
    }

    .mega-content {
        gap: 30px;
    }
}

/* ==============================
   Mobile Nav (<=768px)
================================= */
@media (max-width: 768px) {
    .navbar {
        --navbar-height: 72px;
    }

    .logo-img {
        height: 56px;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    /* Hamburger icon shows */
    .nav-toggle {
        display: flex;
    }

    /* Hidden nav links until toggled */
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
        box-shadow: 0 16px 24px rgba(0, 0, 0, .08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .nav-links.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
    }

    .nav-links a:not(.dropdown-trigger)::after {
        display: none;
    }

    .dropdown-trigger::before {
        display: none;
    }

    .dropdown-trigger {
        width: 100%;
    }

    /* Each dropdown full width */
    .nav-links .dropdown {
        width: 100%;
    }

    /* Mega dropdown becomes an inline accordion panel */
    .nav-links .dropdown .mega-dropdown {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background-image: none !important;
        background-color: #15151a;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    /* Static panels don't need the gradient overlay: with position:static the
       overlay's containing block becomes .dropdown instead of .mega-dropdown,
       so it would otherwise paint over the trigger link and block clicks. */
    .nav-links .dropdown .mega-dropdown::before {
        display: none;
    }

    .nav-links .dropdown.open .mega-dropdown {
        max-height: 1200px;
        padding: 20px 24px 26px;
        transform: none;
    }

    /* Stack mega content in one column */
    .mega-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mega-left h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .mega-left ul {
        margin-top: 10px;
    }

    .mega-content li {
        margin-bottom: 8px;
    }

    .nav-actions {
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .logo-img {
        height: 48px;
    }

    .nav-actions {
        gap: 8px;
    }
}

/* ---- footer.css ---- */
/* Footer Styles */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
    animation: fadeInUp 1.5s ease forwards;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
    animation: fadeInUp 1s ease forwards;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    border-bottom: 2px solid var(--color-white);
    padding-bottom: 10px;
}

.footer-section p,
.footer-section ul {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-accent);
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-white);
}

/* Icons in Contact */
.footer-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

/* Contact Button */
.footer-section.contact .btn-secondary {
    margin-top: 15px;
    display: inline-block;
}

/* Social Media Icons */
.footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social-icons .social-icon img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-social-icons .social-icon:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-accent);
    border-top: 1px solid var(--color-secondary);
    padding-top: 15px;
}

.made-by a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.made-by a:hover {
    color: var(--color-white);
}

.made-by-logo {
    width: 30px;
    height: 30px;
    display: block;
    transition: transform 0.3s ease;
}

.made-by a:hover .made-by-logo {
    transform: scale(1.1);
}

.footer-branch{
    margin: 20px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 400px) {
    .footer-section {
        min-width: 100%;
    }
}

/* ---- product-cart-modal.css ---- */
/* ================= Modal Overlay ================= */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    transition: var(--transition-fast);
}

/* ================= Modal Content ================= */
.product-modal-content {
    background-color: var(--color-bg);
    margin: 50px auto;
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 90%;
    max-height: 600px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn var(--transition-fast) forwards;
}

/* ================= Close Button ================= */
.product-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.product-modal-close:hover {
    color: var(--color-orangered);
}

/* ================= Modal Body ================= */
.product-modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left side: Product Image */
.product-modal-left {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-left img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
}

/* Right side: Product Info */
.product-modal-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Product Name */
.product-modal-right h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-black);
}

/* Price Styling */
.product-modal-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-orangered);
    display: flex;
    gap: 8px;
    align-items: center;
}

.product-modal-price .original-price {
    text-decoration: line-through;
    color: var(--color-secondary);
    font-size: 16px;
}

/* Quantity Input with +/- */
.product-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius);
    background-color: var(--color-accent);
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--color-orangered);
    color: var(--color-white);
}

.qty-wrapper input[type="number"] {
    width: 60px;
    text-align: center;
    padding: 6px 10px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-secondary);
    font-size: 16px;
}

/* Size Selection */
#modalSizeWrapper h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-size-type {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.size-type-btn {
    padding: 6px 14px;
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius);
    background: var(--color-accent);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.size-type-btn.selected,
.size-type-btn:hover {
    background: var(--color-orangered);
    color: var(--color-white);
    border-color: var(--color-orangered);
}

/* Modal Actions */
.product-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-main {
    background-color: var(--color-orangered);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition-fast);
}

.btn-main:hover {
    background-color: var(--color-highlight);
}

.product-modal .btn-secondary {
    background-color: var(--color-white);
    color: var(--color-orangered);
    border: 2px solid var(--color-orangered);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.product-modal .btn-secondary:hover {
    background-color: var(--color-orangered);
    color: var(--color-white);
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .product-modal-body {
        flex-direction: column;
        /* Stack vertically */
        align-items: center;
        /* Center content */
    }

    .product-modal-left,
    .product-modal-right {
        /* flex: 1 1 100%; */
        /* Full width */
        max-width: 100%;
        /* Ensure no extra space */
    }

    .product-modal-left {
        margin-bottom: 20px;
        /* Space between image and details */
    }

    .product-modal-right {
        text-align: center;
        /* Optional: center text for smaller screens */
    }
}


/* ================= Animation ================= */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cart-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cart-success-message.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}
