/* WEBSITE RESETS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}


/* WEBSITE RESETS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 70px;
}


/* ===HEADER STYLES====== */

.site-header {
    background: linear-gradient(135deg, #0a192f 0%, #0d2240 60%, #0f2b50 100%);
    padding: 7px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(243, 156, 18, 0.15);
}

.logo-area {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.logo-area:hover {
    transform: scale(1.03);
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 2px 8px rgba(243, 156, 18, 0.4));
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
    position: relative;
    font-family: 'Gabarito', sans-serif;
    letter-spacing: -0.07px;
    
}

.nav-list li a:hover {
    color: #f39c12;
    text-shadow: 0 0 6px rgba(243, 156, 18, 0.4);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
    left: 0;
}

.subscribe-nav {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: #0a192f !important;
    padding: 0.45rem 1.2rem !important;
    border-radius: 30px;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.35);
    transition: all 0.25s ease !important;
    font-size: 0.8rem !important;
}

.subscribe-nav:hover {
    background: linear-gradient(135deg, #e67e22, #c0392b) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.5) !important;
    transform: translateY(-1px) scale(1.02);
}

.subscribe-nav:hover::after {
    width: 0 !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    text-decoration: none;
    padding: 0.55rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    background: transparent;
    color: #f39c12;
    border-color: #f39c12;
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .site-header {
        padding: 5px 15px;
        
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(160deg, #0a192f 0%, #0d2240 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
    }

    .navigation.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Neat effect when mobile panel opens */
    .nav-list li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navigation.active .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }

    .navigation.active .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .navigation.active .nav-list li:nth-child(2) { transition-delay: 0.1s; }
    .navigation.active .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .navigation.active .nav-list li:nth-child(4) { transition-delay: 0.2s; }
    .navigation.active .nav-list li:nth-child(5) { transition-delay: 0.25s; }

    .mobile-toggle {
        display: flex;
    }

    .header-actions .cta-button {
        display: none;
    }

    .logo-img {
        max-height: 46px;
    }
}

/* Overlay effect when mobile menu is open */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0.8);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* MOBILE PORTAL BUTTON - ONLY VISIBLE ON MOBILE */
.mobile-portal-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.3);
    border: 1px solid rgba(243, 156, 18, 0.2);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.mobile-portal-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.4);
}

/* Show portal button only on mobile */
@media (max-width: 992px) {
    .mobile-portal-btn {
        display: inline-flex;
    }
}

/* Hide desktop CTA on mobile */
@media (max-width: 992px) {
    .header-actions .cta-button {
        display: none;
    }
    
    .header-actions {
        gap: 0.6rem;
    }
    
    .mobile-portal-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Extra small screens - keep full text but smaller */
@media (max-width: 480px) {
    .mobile-portal-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Very small screens - still show full text */
@media (max-width: 380px) {
    .mobile-portal-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}



/* CART STYLES */

/* Cart Icon in Header */
.cart-icon-header {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.7rem;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    line-height: 1;
}

.cart-icon-header i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-icon-header:hover {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.08);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    font-size: 0.55rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
    border: 1.5px solid #0a192f;
    line-height: 1;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    transform: translate(0, 0);
    /* Center the text perfectly */
    text-indent: 0;
    font-variant-numeric: tabular-nums;
}

.cart-count.show {
    display: flex;
}

.cart-count.two-digits {
    min-width: 22px;
    height: 18px;
    font-size: 0.5rem;
}

.cart-count.three-digits {
    min-width: 26px;
    height: 18px;
    font-size: 0.45rem;
}

/* ===FOOTER STYLES====== */

.site-footer {
    background: linear-gradient(160deg, #0a192f 0%, #11253e 50%, #152a49 100%);
    color: #fcfdff;
    padding: 3rem 2rem 0;
    
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.4), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 4px 12px rgba(243, 156, 18, 0.3));
    transform: scale(1.02);
}

.footer-description {
    color: rgba(218, 220, 224, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-family: 'Bai Jamjuree', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-description:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(242, 244, 254, 0.7);
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-color: transparent;
    color: #0a192f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.35);
}

.footer-title {
    color: #f7f9ff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    transition: color 0.2s ease;
}

.footer-title:hover {
    color: #f39c12;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, rgba(243, 156, 18, 0));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-title:hover::after {
    width: 56px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links li a {
    color: rgba(228, 228, 231, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-family: 'Gabarito', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #f39c12;
    transition: width 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    width: 8px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
    color: rgba(223, 226, 233, 0.8);
    font-size: 0.85rem;
    font-family: 'Bai Jamjuree', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 500;
    transition: all 0.25s ease;
    padding: 5px 0;
    border-radius: 8px;
}

.footer-contact-list li:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    background: rgba(243, 156, 18, 0.08);
}

.footer-contact-list li span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.footer-contact-list li i {
    color: #f39c12;
    margin-top: 0.2rem;
    width: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.footer-contact-list li:hover i {
    transform: scale(1.15);
    color: #e67e22;
}

.subscribe-text {
    color: rgba(230, 231, 238, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-family: 'Bai Jamjuree', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.subscribe-text:hover {
    color: rgba(255, 255, 255, 0.95);
}

.subscribe-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.subscribe-form input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    outline: none;
}

.subscribe-form input:hover {
    background: rgba(255, 255, 255, 0.07);
}

.subscribe-form input:focus {
    border-color: rgba(243, 156, 18, 0.5);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.08);
    transform: scale(1.01);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.subscribe-form input:hover::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 0.88rem;
   
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.25);
    position: relative;
    overflow: hidden;
    
}

.subscribe-form button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.subscribe-form button:hover::after {
    opacity: 1;
}

.subscribe-form button:hover {
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.4);
    transform: translateY(-2px) scale(1.01);
}

.subscribe-form button:active {
    transform: translateY(0);
}

.form-note {
    color: rgba(136, 136, 136, 0.7);
    font-size: 0.7rem;
    margin-top: 0.8rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s ease;
}

.form-note:hover {
    color: rgba(136, 136, 136, 0.9);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    transition: border-color 0.3s ease;
}

.footer-bottom:hover {
    border-top-color: rgba(243, 156, 18, 0.15);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.footer-bottom-container p {
    color: rgba(136, 136, 136, 0.7);
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: all 0.25s ease;
}

.footer-bottom-container p:hover {
    color: rgba(243, 156, 18, 0.7);
    letter-spacing: 0.3px;
}

/* Mobile Responsive - 2 columns on mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .site-footer {
        padding: 2rem 1rem 0;
    }

    .footer-col-about {
        grid-column: span 2;
    }

    .footer-col-subscribe {
        grid-column: span 2;
    }

    .footer-bottom-container p {
        font-size: 0.7rem;
    }

    .footer-contact-list li span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 1rem;
    }


    .footer-contact-list li {

    margin-bottom: 0.38rem;

}
}



/* ====BACK TO THE TOP AND WHATSAPP BUTTON==== */

/* ── Floating WhatsApp Button ── */

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow:
        0 4px 15px rgba(37, 211, 102, 0.35),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2.8s ease-out infinite;
}

/* Tooltip label */
.float-whatsapp::before {
    content: 'Chat with us';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #0a192f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Tooltip arrow */
.float-whatsapp::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    border: 5px solid transparent;
    border-left-color: #0a192f;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-whatsapp:hover::before,
.float-whatsapp:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 10px 28px rgba(37, 211, 102, 0.5),
        0 0 0 8px rgba(37, 211, 102, 0.08);
    animation: none;
}

/* Ripple pulse */
@keyframes wa-pulse {
    0%   { box-shadow: 0 4px 15px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.35); }
    60%  { box-shadow: 0 4px 15px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}


/* ── Back to Top Button ── */

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a192f, #0d2240);
    border: 1.5px solid rgba(243, 156, 18, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    outline: none;
}

/* Progress ring */
.back-to-top svg {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: rotate(-90deg);
    pointer-events: none;
}

.back-to-top svg circle {
    fill: none;
    stroke: #f39c12;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    transition: stroke-dashoffset 0.1s linear;
    opacity: 0.7;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Tooltip label */
.back-to-top::before {
    content: 'Back to top';
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    background: #0a192f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Tooltip arrow */
.back-to-top::after {
    content: '';
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    border: 5px solid transparent;
    border-right-color: #0a192f;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top:hover::before,
.back-to-top:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(243, 156, 18, 0.4);
}

.back-to-top:active {
    transform: scale(0.95);
}


/* ── Mobile Responsive ── */

@media (max-width: 768px) {
    .float-whatsapp {
        bottom: 20px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.45rem;
    }

    .back-to-top {
        bottom: 20px;
        left: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .float-whatsapp::before,
    .float-whatsapp::after,
    .back-to-top::before,
    .back-to-top::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .float-whatsapp {
        bottom: 15px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .back-to-top {
        bottom: 15px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* ===== MINI CART - FLOATING CART ===== */

.mini-cart {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 40px);
    max-height: 500px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(243, 156, 18, 0.15);
}

.mini-cart.active {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Mini Cart Header */
.mini-cart-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0a192f, #11253e);
    color: #ffffff;
    border-bottom: 2px solid rgba(243, 156, 18, 0.3);
    flex-shrink: 0;
}

.mini-cart-title {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-cart-title i {
    color: #f39c12;
}

.mini-cart-count {
    background: #f39c12;
    color: #0a192f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

.mini-cart-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.mini-cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Mini Cart Body */
.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    max-height: 300px;
    background: #fafbfc;
}

.mini-cart-body::-webkit-scrollbar {
    width: 4px;
}

.mini-cart-body::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.mini-cart-body::-webkit-scrollbar-thumb {
    background: #f39c12;
    border-radius: 4px;
}

.mini-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.mini-cart-empty i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.mini-cart-empty p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin: 0;
}

/* Mini Cart Item */
.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease;
}

.mini-cart-item:hover {
    background: rgba(243, 156, 18, 0.04);
}

.mini-cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-image-placeholder {
    font-size: 1.5rem;
    color: #94a3b8;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    font-size: 0.82rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-price {
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'Poppins', sans-serif;
}

.mini-cart-item-price strong {
    color: #0f172a;
    font-weight: 600;
}

.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #64748b;
}

.mini-cart-item-qty button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}

.mini-cart-item-qty button:hover {
    background: #f39c12;
    color: #ffffff;
    border-color: #f39c12;
}

.mini-cart-item-qty button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.mini-cart-item-qty span {
    min-width: 20px;
    text-align: center;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    padding: 4px;
}

.mini-cart-item-remove:hover {
    color: #dc2626;
}

/* Mini Cart Footer */
.mini-cart-footer {
    padding: 14px 20px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.mini-cart-total span:last-child {
    color: #f39c12;
}

.mini-cart-actions {
    display: flex;
    gap: 10px;
}

.mini-cart-actions a {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mini-cart-view-btn {
    background: #f1f5f9;
    color: #0f172a;
}

.mini-cart-view-btn:hover {
    background: #e2e8f0;
}

.mini-cart-checkout-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff;
}

.mini-cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.35);
}

/* Mini Cart Toggle Button (floating) */
.mini-cart-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a192f, #11253e);
    border: 2px solid rgba(243, 156, 18, 0.4);
    color: #f39c12;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.mini-cart-toggle:hover {
    transform: scale(1.08);
    border-color: #f39c12;
    box-shadow: 0 6px 24px rgba(243, 156, 18, 0.3);
}

.mini-cart-toggle-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.mini-cart-toggle .cart-icon {
    position: relative;
}

/* Mini Cart Overlay */
.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mini-cart {
        bottom: 85px;
        right: 10px;
        width: calc(100vw - 20px);
        max-height: 450px;
        border-radius: 12px;
    }

    .mini-cart-toggle {
        bottom: 85px;
        right: 10px;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mini-cart {
        bottom: 75px;
        right: 8px;
        width: calc(100vw - 16px);
        max-height: 400px;
    }

    .mini-cart-toggle {
        bottom: 75px;
        right: 8px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .mini-cart-item {
        padding: 8px 12px;
    }

    .mini-cart-item-image {
        width: 40px;
        height: 40px;
    }

    .mini-cart-actions {
        flex-direction: column;
        gap: 6px;
    }
}



/* ===CUSTOM SCROLLBAR=== */

/* Custom Scrollbar Styles */

/* For Webkit browsers (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #f39c12 #0a192f;
}




/* ======PAGE HEADER===== */

/* Page Header Component */
.page-header {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #14243f 0%, #0d2240 50%, #0f2b50 100%);
    overflow: hidden;
    margin-top: -17px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><circle cx="100" cy="100" r="4" fill="rgba(243,156,18,0.06)"/><circle cx="300" cy="200" r="3" fill="rgba(243,156,18,0.05)"/><circle cx="500" cy="150" r="5" fill="rgba(243,156,18,0.04)"/><circle cx="700" cy="300" r="3" fill="rgba(243,156,18,0.06)"/><circle cx="200" cy="500" r="4" fill="rgba(243,156,18,0.05)"/><circle cx="600" cy="600" r="3" fill="rgba(243,156,18,0.04)"/><circle cx="400" cy="700" r="5" fill="rgba(243,156,18,0.03)"/><circle cx="150" cy="350" r="2" fill="rgba(243,156,18,0.07)"/><circle cx="650" cy="450" r="2" fill="rgba(243,156,18,0.06)"/></svg>');
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
}

.page-header-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 224, 212, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-shape::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 253, 248, 0.05), transparent 70%);
    border-radius: 50%;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header-content {
    max-width: 800px;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.page-header-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.page-header-breadcrumb a:hover {
    color: #f39c12;
}

.page-header-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.page-header-breadcrumb .current-page {
    color: #f39c12;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.page-header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dee0ec;
    margin-bottom: 0.1rem;
   font-family: 'Gabarito', sans-serif;
    line-height: 1.2;
}

.page-header-title span {
    background: linear-gradient(135deg, #dfdfe3, #cfd1dd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}



.page-header-description {
    color: rgba(183, 188, 209, 0.825);
    font-size: 1.05rem;
    line-height: 1.5;
    font-family: 'Bai Jamjuree', sans-serif;
    max-width: 600px;
    margin-top: -1px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .page-header {
        padding: 3rem 1.5rem;
    }
    
    .page-header-title {
        font-size: 2.5rem;
    }
    
    .page-header-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header-title {
        font-size: 1.2rem;
    }
    
    .page-header-breadcrumb a,
    .page-header-breadcrumb .current-page {
        font-size: 0.75rem;
    }
    
    .page-header-description {
        font-size: 0.85rem;
    }
}






/* ==========SUBSCRIBE FORM FOOTER========= */

/* Footer Subscribe Form Styles */
.subscribe-form {
    margin-top: 1rem;
}

.subscribe-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.subscribe-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #f39c12;
    background: rgba(255, 255, 255, 0.12);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    border-radius: 8px;
    color: #0a192f;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.form-note {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    margin-top: 0.6rem;
    text-align: center;
}

.subscribe-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.4;
}




/* Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 180px;
    right: 30px;
    background: #0a192f;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    z-index: 1001;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 400px;
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast i {
    font-size: 1.2rem;
    color: #48bb78;
    flex-shrink: 0;
}

.cart-toast .fa-exclamation-circle {
    color: #dc2626 !important;
}

@media (max-width: 768px) {
    .cart-toast {
        bottom: 170px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}



/* Mini cart quantity input - allow typing */
.mini-cart-item-qty-input {
    width: 30px;
    height: 28px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease;
    -moz-appearance: textfield;
}

.mini-cart-item-qty-input::-webkit-outer-spin-button,
.mini-cart-item-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mini-cart-item-qty-input:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}