@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Inter", sans-serif;
    --font-display: "Inter", sans-serif;
    --nav-font: "Inter", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #2e2f5d;
    --accent-color: #e3c176;
    --accent-hover: #e5a729;
    --primary-blue: #172645;
    --medium-blue: #354b9c;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --text-muted: #6c757d;
    --navy-light: 220 40% 28%;
    --gold: 40 70% 55%;

    /* Premium UI Tokens */
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 10px 40px rgba(46, 47, 93, 0.1);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

:root {
    --nav-color: #ffffff;
    --nav-hover-color: var(--accent-color);
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #2e2f5d;
    --nav-dropdown-hover-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
}

.header .top-bar {
    background-color: var(--primary-blue);
    font-size: 14px;
}

.header .top-bar .top-bar-item {
    color: #ffffff;
}

.header .top-bar .top-bar-item a {
    color: #ffffff;
    text-decoration: none;
}

.header .top-bar .top-bar-item a:hover {
    text-decoration: underline;
}

.header .main-header {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.header .main-header .logo {
    line-height: 1;
}

.header .main-header .logo img {
    max-height: 62px;
    margin-right: 8px;
}

.header .main-header .header-actions {
    gap: 16px;
}

.header .main-header .header-actions .header-action-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--default-color);
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header .main-header .header-actions .header-action-btn i {
    font-size: 24px;
}

.header .main-header .header-actions .header-action-btn:hover {
    color: var(--accent-color);
}

.header .search-form {
    margin: 0;
}

.header .search-form .input-group {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 50px;
    overflow: visible;
    background-color: var(--surface-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header .search-form .input-group .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0 25px;
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px !important;
    margin: 3px;
}

@media (min-width: 1200px) {
    .header .header-nav {
        border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
        background: var(--medium-blue);
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .navmenu>ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a {
        color: var(--primary-blue);
        padding: 10px 0;
        font-size: 15px;
        font-family: var(--nav-font);
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navmenu a:hover,
    .navmenu .active {
        color: var(--accent-color);
    }

    /* Dropdown Styling */
    .navmenu .dropdown>ul {
        margin: 0;
        padding: 10px 0;
        background: #ffffff;
        display: block;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        left: 0;
        top: 100%;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 8px;
        min-width: 220px;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        font-weight: 500;
        color: var(--primary-blue);
    }

    .navmenu .dropdown ul a:hover {
        color: var(--accent-color);
        background: #f8f9fa;
    }
}

/* Mobile Nav Menu */
@media (max-width: 1199px) {
    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-toggle {
        color: var(--primary-blue);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 10000;
        position: relative;
    }

    .mobile-nav-active .mobile-nav-toggle {
        position: fixed;
        right: 15px;
        top: 25px;
    }

    .navmenu {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.9);
        z-index: 9999;
        display: none;
        padding: 50px 20px;
        overflow-y: auto;
    }

    .mobile-nav-active .navmenu {
        display: block;
    }

    .navmenu ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 0 !important;
        /* Override the gap-4 from inline style/utility */
    }

    .navmenu li {
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .navmenu li:last-child {
        border-bottom: none;
    }

    .navmenu a {
        display: block;
        padding: 15px 10px;
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        padding: 0 0 0 20px;
        background: transparent;
        box-shadow: none;
    }

    .navmenu .dropdown.active>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Premium Typography & Helpers
--------------------------------------------------------------*/

.premium-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}

@media (max-width: 768px) {
    .premium-title {
        font-size: 2rem;
    }
}

/* Premium Buttons */
.btn-gold {
    background: var(--accent-color);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 185, 46, 0.3);
    color: var(--primary-blue);
}

.btn-outline-white {
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Home Page Sections
--------------------------------------------------------------*/

/* Hero Section */
.hero-modern {
    overflow: hidden;
}

/* Trust Bar */
.trust-bar {
    background: #172645;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: hsl(var(--navy-light) / .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.trust-text h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fbfbfb;
}

.trust-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Category Sophisticated Grid */
.cat-card-new {
    background: #ffffff;
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    border: 1px solid #f1f5f9;
    border-radius: var(--border-radius-md);
}

.cat-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 47, 93, 0.08);
    border-color: var(--accent-color);
}

.cat-icon-modern {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.cat-card-new:hover .cat-icon-modern {
    background: var(--accent-color);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.cat-card-new h5 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.15rem;
    color: var(--primary-blue);
}

.cat-card-new p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Card Modern */
.product-card-modern {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow) !important;
}

.product-card-modern:hover img {
    transform: scale(1.05);
}

/* Stats Bar */
.stats-bar {
    background: var(--primary-blue);
    padding: 40px 0;
    color: white;
}

.stat-val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-txt {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Testimonial Cards */
.testimonial-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: var(--border-radius-lg);
    height: 100%;
    border: 1px solid #f1f5f9;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--primary-blue);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-blue);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Built for Scale Cards */
.scale-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: var(--transition-smooth);
}

.scale-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.scale-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.scale-card h5 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.scale-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA Banner */
.cta-banner-modern {
    background: linear-gradient(rgba(26, 27, 58, 0.9), rgba(46, 47, 93, 0.95)), url('../cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 27, 58, 0.9), rgba(46, 47, 93, 0.95)), url('../page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

/* Contact Form Polish */
.contact-form-modern .form-control {
    border: 1px solid #f1f5f9;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    background: #f8fafc;
    transition: var(--transition-smooth);
}

.contact-form-modern .form-control:focus {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(253, 185, 46, 0.1);
}

.contact-form-modern label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-main {
    padding: 70px 0 40px;
}

.footer .footer-widget {
    margin-bottom: 30px;
}

.footer .footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 12px;
}

.footer .footer-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: all 0.3s ease;
}

.footer .footer-links a:hover {
    color: var(--accent-color);
}

.footer .footer-bottom {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 25px 0;
}

.footer-newsletter {
    position: relative;
    background-image: url('../bg-newsletter.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-newsletter .footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-newsletter .container {
    position: relative;
    z-index: 2;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

.text-gold {
    color: hsl(var(--gold));
}

.bg-warning {
    background: #e3c073 !important;
}

.stat-item {
    text-align: center !important;
}

#shop {
    background: #f8f6f2 !important;
}

/* Standardized Product Card */
.product-card {
    transition: var(--transition-smooth);
    background: #ffffff;
    overflow: hidden;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-card .card-img-top {
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.breadcrumb-item.active {
    color: rgb(255, 255, 255) !important;
    font-weight: 700 !important;
}

.product-hero {
    background: #f5f7ff url(../products.svg) no-repeat top
}

.products-section-saturated {
    background: url(../products-background.svg) bottom no-repeat, linear-gradient(97.91deg, #172645 7.06%, #0b1a4d 98.51%);
}

/*--------------------------------------------------------------
# Premium Pagination
--------------------------------------------------------------*/
.pagination {
    gap: 8px;
    margin-top: 2rem;
}

.pagination .page-item {
    border: none;
}

.pagination .page-link {
    border: 1px solid #e0e0e0;
    color: var(--primary-blue);
    border-radius: 10px !important;
    padding: 10px 18px;
    font-weight: 700;
    transition: var(--transition-smooth);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    background: #ffffff;
    font-size: 0.9rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--accent-color) !important;
    box-shadow: 0 8px 20px rgba(23, 38, 69, 0.2);
}

.pagination .page-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 193, 118, 0.3);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #eee;
    color: #bbb;
    pointer-events: none;
}

/* Adjustments for Mobile */
@media (max-width: 576px) {
    .pagination {
        gap: 5px;
    }

    .pagination .page-link {
        padding: 8px 12px;
        min-width: 38px;
        font-size: 0.8rem;
    }
}

/* Pagination Info Text */
.pagination+p,
nav p.text-muted {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    font-weight: 500;
}

/* Live Search Styling */
.live-search-item {
    transition: background-color 0.2s ease;
    background-color: #ffffff;
}

.live-search-item:hover {
    background-color: #f8f9fa;
}

.live-search-item:last-child {
    border-bottom: none !important;
}

.live-search-item .fw-bold {
    color: var(--primary-blue) !important;
    font-size: 0.95rem;
}

.live-search-item .small {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

#live-search-results::-webkit-scrollbar {
    width: 6px;
}

#live-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#live-search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

#live-search-results::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Shop Page Search Box */
.search-box-premium .input-group {
    border: 2px solid #edf2f7;
    transition: all 0.3s ease;
}

.search-box-premium .input-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(22, 23, 46, 0.1) !important;
}

.search-box-premium .form-control:focus {
    box-shadow: none;
}

.search-box-premium .input-group-text {
    color: #a0aec0;
}

#shop-loader .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.medium-btn-grident {
    animation: MediumBtnGrident 2.5s infinite
}

.medium-btn-grident {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .15) 24%, hsla(0, 0%, 100%, 0) 26%, hsla(0, 0%, 100%, 0) 53%, hsla(0, 0%, 100%, .15) 54%);
    transform: translateZ(0) scaleX(1) rotateX(0deg) rotateY(0deg) rotate(0deg) skew(-40deg, 0deg);
    position: absolute;
    left: -25%;
    right: -10px;
    top: 0;
    width: 40px;
    height: 105%
}

@keyframes MediumBtnGrident {
    0% {
        transform: translateZ(0) scaleX(1) rotateX(0deg) rotateY(0deg) rotate(0deg) skew(-40deg, 0deg)
    }

    to {
        transform: translate3d(40rem, 0, 0) scaleX(1) rotateX(0deg) rotateY(0deg) rotate(0deg) skew(-30deg, 0deg)
    }
}

/*--------------------------------------------------------------
# Announcement Ticker
--------------------------------------------------------------*/
.hero-modern-slider {
    position: relative;
    overflow: hidden;
}

.hero-modern-slider .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-modern-slider .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-modern-slider .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.hero-modern-slider .btn {
    z-index: 10;
    position: relative;
}