:root {
    --red: #ff3838;
    --white: #ffffff;
    --black: #000000;
    --red-one: #CB356B;
    --red-two: #BD3F32;
    --green-one: #56ab2f;
    --green-two: #94d049;
    --black-one: #232526;
    --black-two: #70767b;
    --blue-one: #021B79;
    --blue-two: #0575E6;
    --silver: #bdc3c7;
    /* Design System Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition-normal: 0.3s ease;
    --transition-fast: 0.15s ease;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --primary: #32519a;
    --primary-light: #4967af;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove the blue tap highlight on mobile for interactive elements */
button, a, input, textarea, select, label, .btn, .link, .res-portal-cart-btn, .sv-user, .sv-user-menu {
    -webkit-tap-highlight-color: transparent;
}

.bg-red {
    background-color: var(--red);
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.bg-blue {
    background-color: var(--blue-one);
}

.bg-green {
    background-color: var(--green-one);
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}


/* Allow scrolling when viewing sections other than slider */

body.section-view {
    overflow-y: auto;
    overflow-x: hidden;
}

body.section-view html {
    overflow-y: auto;
    overflow-x: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.row:after,
.row:before {
    box-sizing: border-box;
}

.col-6 {
    width: 50%;
    position: relative;
}


/* Fix slider to use slide-right animation for all elements */

.slider {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
}

.slide.active {
    display: flex;
    transform: translateX(0%);
}


/* Ensure all slide elements have smooth transitions */

.slide * {
    transition: all 0.6s ease-in-out;
}


/* Remove the individual slide positioning - let them stack naturally */

/* Removed .fullheight utility (no longer in markup). Maintain previous layout by applying height directly */
.slide > .col-6 { height: 100vh; }
@media (max-width: 820px){
    .slide { height:auto; }
    .slide > .col-6 { height:auto; }
}

.product-img {
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.img-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-left: 20px;
}

.img-wrapper img {
    height: auto;
    width: 70%;
    max-width: 380px;
    object-fit: contain;
}

.more-images {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.more-images-item {
    height: fit-content;
    border-radius: 12px;
    overflow: hidden;
    margin: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.more-images-item img {
    height: auto;
    width: 70px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.more-images-item:hover img {
    transform: scale(1.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.more-images-item:hover {
    cursor: pointer;
}


/* Fix text layout to prevent cutting off */

.product-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 6%;
    color: var(--silver);
    max-width: 1400px;
    transition: all 0.6s ease-in-out;
}

.info-wrapper {
    margin: auto;
    position: relative;
    text-align: right;
    max-width: 450px;
    width: 100%;
    transition: all 0.6s ease-in-out;
}

.product-name h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    transition: all 0.6s ease-in-out;
}

.product-price {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    transition: all 0.6s ease-in-out;
}

.product-price span {
    font-size: 1.2rem;
    color: var(--black-two);
    transition: all 0.6s ease-in-out;
}

.product-size {
    margin: 15px 0;
    transition: all 0.6s ease-in-out;
}

.product-size h3 {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.6s ease-in-out;
}

.size-wrapper {
    display: flex;
    flex-flow: row-reverse;
    padding: 3px;
    gap: 8px;
    transition: all 0.6s ease-in-out;
}

.size-wrapper div {
    font-weight: 600;
    margin: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid var(--silver);
    color: var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.size-wrapper div.active {
    border: 1px solid var(--black);
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.05);
}

.size-wrapper div:hover {
    border: 1px solid var(--silver);
    color: var(--silver);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.02);
}

.color-wrapper {
    display: flex;
    flex-flow: row-reverse;
    padding: 0;
    gap: 8px;
}

.color-wrapper>div {
    margin: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 2px;
    border: 2px solid var(--silver);
    background-color: var(--silver);
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-wrapper>div.active {
    border: 2px solid var(--black);
    transform: scale(1.1);
}

.color-wrapper>div:hover {
    border: 2px solid var(--black);
    transform: scale(1.05);
}

.color-wrapper>div>div {
    width: 41px;
    height: 41px;
    border-radius: 50%;
}

.product-description {
    margin: 20px 0;
    text-align: justify;
    font-weight: 400;
    line-height: 1.5;
    max-width: 100%;
    word-wrap: break-word;
    font-size: 0.9rem;
    color: var(--black-two);
    transition: all 0.6s ease-in-out;
}

.button {
    margin-top: 15px;
    transition: all 0.6s ease-in-out;
}

.button>button {
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 40px;
    border-radius: 25px;
    border: 2px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.button>button:hover {
    cursor: pointer;
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img-col {
    border-bottom-left-radius: 100%;
}

.slide-control {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.slide-control div {
    height: 50px;
    width: 50px;
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    cursor: pointer;
}

.slide-control div:hover {
    transform: translateY(-5px);
    border-color: var(--black);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.slide-control div img {
    height: auto;
    width: 100%;
    filter: grayscale(100%);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    object-fit: cover;
}

.slide-control div:hover img {
    filter: unset;
    transform: rotate(-45deg) scale(1.1);
}

.slide-control div.active {
    border-color: var(--black);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slide-control div.active img {
    filter: unset;
    transform: rotate(-45deg) scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 12px;
}

.modal-content {
    animation-name: zoom;
    animation-duration: .6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--silver);
    transform: scale(1.1);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar a {
    float: left;
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile nav toggle */
.nav-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px 12px;
        margin-left: 8px;
        border-radius: 8px;
        position: relative;
        transition: background .25s ease;
}
.nav-toggle:focus { outline: 2px solid var(--primary-light); outline-offset:2px; }
.nav-toggle:hover { background: rgba(0,0,0,0.06); }
.nav-toggle-bar {
        width: 22px; height: 2px; background:#111; display:block; border-radius:2px; position:relative; transition: all .35s ease;
}
.nav-toggle-bar::before, .nav-toggle-bar::after { content:""; position:absolute; left:0; width:100%; height:2px; background:#111; border-radius:2px; transition: all .35s ease; }
.nav-toggle-bar::before { top:-6px; }
.nav-toggle-bar::after { top:6px; }
.nav-toggle.active .nav-toggle-bar { background: transparent; }
.nav-toggle.active .nav-toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active .nav-toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }

/* Dropdown menu container for mobile */
@media (max-width: 780px) {
    .navbar { position: relative; }
    .nav-toggle { display: inline-flex; flex-direction:column; justify-content:center; align-items:center; }
    .navbar-right { 
        position: absolute; 
        top: 100%; 
        right: 12px; 
        background: #ffffff; 
        flex-direction: column; 
        align-items: stretch; 
        padding: 10px 10px 14px; 
        border-radius: 14px; 
        box-shadow: 0 12px 28px -8px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08); 
        opacity: 0; 
        pointer-events: none; 
        transform: translateY(6px) scale(.97); 
        transform-origin: top right; 
        transition: opacity .28s ease, transform .32s cubic-bezier(.4,.34,.14,1.4);
        width: min(220px, 70vw);
        gap: 4px;
        z-index: 500;
        text-align: center;
    }
    .navbar-right.show { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
    .navbar-right a { width: 100%; padding: 10px 14px; font-size: .72rem; letter-spacing:.08em; border-radius:9px; text-align: center; }
    .navbar-right a.active { background: rgba(0,0,0,0.06); color:#111; box-shadow:none; position:relative; }
    .navbar-right a.active::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%); width:60%; height:2px; background:#111; border-radius:1px; display:block; }
    .navbar-right a:hover { background: #111; color:#fff; transform:none; box-shadow:none; }
}

.navbar .logo {
    flex: 1;
    color: var(--black);
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar .logo img {
    height: 90px;
    width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.navbar .logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.navbar-right a:hover {
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-right a.active {
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.navbar-right a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--black);
    border-radius: 1px;
}

.cart {
    position: relative;
    margin-left: 16px;
}

.cart i {
    font-size: 1.4rem;
}

/* =============================================
     Minimal Monotone Refresh (Touch of Blue)
     Overrides appended to simplify visual style
     ============================================= */

:root {
    --minimal-bg: #f8fafc;
    --minimal-surface: #ffffff;
    --minimal-border: #e5e7eb;
    --minimal-text: #1f2937;
    --minimal-text-light: #6b7280;
    --accent-blue: #2a6aff;
    --accent-blue-soft: #4d7dff;
}

body, html { background: var(--minimal-bg); color: var(--minimal-text); }
body { scroll-padding-top: 60px; }

/* Navbar */
.navbar {
    height: 56px;
    padding: 6px clamp(16px,3vw,36px);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--minimal-border);
    box-shadow: 0 2px 4px -2px rgba(0,0,0,0.06), 0 4px 16px -6px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
}
.navbar .logo img { height: 54px; width: auto; filter:none; }
.navbar .logo:hover img { transform: scale(1.02); filter:none; }

/* Desktop menu links */
.navbar-right a {
    padding: 8px 14px;
    font-size: .7rem;
    letter-spacing:.15em;
    font-weight:600;
    color: var(--minimal-text-light);
    background: transparent;
    box-shadow:none;
    transform:none;
    transition: background .25s, color .25s;
}
.navbar-right a:hover { background: var(--minimal-border); color: var(--minimal-text); box-shadow:none; transform:none; }
.navbar-right a.active { background: rgba(0,0,0,0.06); color:#111; box-shadow:none; position:relative; }
.navbar-right a.active::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%); width:60%; height:2px; background:#111; border-radius:1px; display:block; }

/* Mobile dropdown adjustments */
@media (max-width:780px){
    .navbar-right { right:8px; padding:10px 10px 12px; border:1px solid var(--minimal-border); background:#fff; }
    .navbar-right a { font-size:.68rem; }
    .nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after { background: var(--minimal-text); }
    .nav-toggle:hover { background: rgba(0,0,0,0.08); }
}

    /* When relocated, slide-control should flow after product info */
    #slide-control.mobile-relocated { position:relative; background:rgba(255,255,255,0.92); box-shadow:0 6px 22px -8px rgba(0,0,0,0.15); bottom:auto; left:auto; transform:none; margin:8px auto 0; }
    #slide-control.mobile-relocated .slide-control-item { box-shadow:none; }
/* Slider & product sections */
.slider { background: linear-gradient(180deg,#ffffff 0%, #f0f4fa 100%); }
.slide { background: transparent; }
.product-info { background: transparent; }
.product-info .info-wrapper { background: var(--minimal-surface); padding: clamp(18px,2.2vw,38px); border:1px solid var(--minimal-border); border-radius: 20px; box-shadow: 0 4px 16px -6px rgba(0,0,0,0.08); }
.product-name h2 { font-weight: 700; letter-spacing:.5px; color: var(--minimal-text); }
.product-price { color: var(--accent-blue); font-weight:700; }

/* Simplify size selection */
.size-wrapper div { background: var(--minimal-border); color: var(--minimal-text); border-radius:8px; padding:6px 10px; font-size:.65rem; font-weight:600; letter-spacing:.1em; }
.size-wrapper div.active { background: var(--accent-blue); color:#fff; }

/* Buttons */
.button button {
    background: var(--accent-blue);
    color:#ffffff;
    padding: 12px 26px;
    border:none;
    border-radius: 10px;
    font-weight:600;
    letter-spacing:.08em;
    font-size:.72rem;
    cursor:pointer;
    box-shadow: 0 6px 18px -6px rgba(42,106,255,0.45);
    transition: background .25s, transform .25s, box-shadow .25s;
}
.button button:hover { background: var(--accent-blue-soft); transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(42,106,255,0.55); }
.button button:active { transform: translateY(0); box-shadow: 0 4px 12px -4px rgba(42,106,255,0.45); }

/* Cards / Sections general simplification */
.services-section, .testimonials-section, .about-section, .contact-section { background: transparent; }
.service-card, .testimonial-card, .about-image-card, .contact-item, .social-media-card { border:1px solid var(--minimal-border); box-shadow:none; backdrop-filter:none; }
.service-card:hover, .testimonial-card:hover, .about-image-card:hover, .social-media-card:hover { box-shadow:0 6px 20px -8px rgba(0,0,0,0.08); }

/* Contact form */
.contact-form input, .contact-form textarea { border:1px solid var(--minimal-border); background:#ffffff; }
.contact-form input:focus, .contact-form textarea:focus { outline:none; border-color: var(--accent-blue); box-shadow:0 0 0 3px rgba(42,106,255,0.15); }

/* Modal tweaks minimal */
.modal { background: rgba(15,23,42,0.65); backdrop-filter: blur(4px); }

/* Reduce heavy animations (optional mild performance) */
@media (prefers-reduced-motion: reduce){
    .left-to-right, .right-to-left, .bottom-up, .bounce { animation:none !important; transition:none !important; }
}

/* Fine tune typography spacing */
h2, h3, h4 { letter-spacing:.5px; }

/* Ensure consistent box sizing for new wrappers */
.info-wrapper *, .service-card *, .about-image-card * { box-sizing:border-box; }

/* =============================================
     Light Mode Theme (Aligned with reservation-form feel)
     ============================================= */
body, html { background: linear-gradient(180deg,#f8fafc 0%, #eef2f6 100%); }

/* Panels / cards unify */
.service-card, .testimonial-card, .about-image-card, .contact-item, .social-media-card, .contact-form, .about-image-placeholder {
    background:#ffffff;
    border:1px solid #dbe1e8;
    border-radius:18px;
    box-shadow:0 4px 16px -6px rgba(0,0,0,0.06);
    transition:box-shadow .25s, transform .25s;
}
.service-card:hover, .testimonial-card:hover, .about-image-card:hover, .social-media-card:hover, .contact-item:hover {
    box-shadow:0 10px 32px -10px rgba(0,0,0,0.10);
    transform:translateY(-3px);
}

/* Section wrappers spacing */
.services-section, .testimonials-section, .about-section, .contact-section { padding-top:40px; padding-bottom:50px; }
.services-header, .testimonials-header, .about-header, .contact-header { text-align:center; margin-bottom:28px; }

/* Gradient headings similar to reservation-form title but lighter */
.services-header h2, .testimonials-header h2, .about-header h2, .contact-header h2 {
    background:linear-gradient(135deg,#2a6aff,#6fb8ff);
    -webkit-background-clip:text; background-clip:text; color:transparent;
    font-weight:700; letter-spacing:.45px; line-height:1.15; font-size:clamp(1.35rem,1.05rem + .6vw,2rem);
    margin:0;
}
.services-header p, .testimonials-header p, .about-header p, .contact-header p { color:#556172; font-size:.8rem; margin-top:6px; }

/* About stats cards unify */
.about-stats .stat-card { background:#ffffff; border:1px solid #dbe1e8; box-shadow:0 2px 10px -4px rgba(0,0,0,0.08); }
.about-stats .stat-number { color:#2a6aff; }

/* Testimonial images slight rounding */
.testimonial-image img { border-radius:14px; }

/* Social cards tone */
.social-media-card { text-decoration:none; color:#1f2937; }
.social-media-card h4 { color:#2a3340; }
.social-media-card:hover h4 { color:#2a6aff; }

/* Contact form styling enhancements */
.contact-form input, .contact-form textarea { border:1px solid #dbe1e8; background:#ffffff; font-size:.85rem; }
.contact-form input:focus, .contact-form textarea:focus { outline:none; border-color:#2a6aff; box-shadow:0 0 0 3px rgba(42,106,255,0.15); }
.submit-btn { background:#2a6aff; border:none; color:#fff; font-weight:600; padding:14px 26px; letter-spacing:.05em; border-radius:12px; cursor:pointer; transition:background .25s, box-shadow .25s, transform .25s; }
.submit-btn:hover { background:#4d7dff; box-shadow:0 8px 22px -8px rgba(42,106,255,0.55); transform:translateY(-2px); }
.submit-btn:active { transform:translateY(0); box-shadow:0 4px 14px -6px rgba(42,106,255,0.5); }

/* Slide product area refine */
.product-description p { color:#4b5563; font-size:.78rem; line-height:1.45; }
.size-wrapper div { box-shadow:none; }

/* Buttons uniform inside slider already styled; ensure contrast on dark gradients */
.img-col { box-shadow:inset 0 0 0 2000px rgba(255,255,255,0.05); }

/* Modal unify */
.modal .more-images-item { background:#ffffff; border:1px solid #dbe1e8; }

/* Navigation active underline removed earlier; ensure hover clarity */
.navbar-right a:hover:not(.active) { color:#111; }

/* Responsive polish */
@media (max-width:920px){ .services-section, .testimonials-section, .about-section, .contact-section { padding-top:50px; padding-bottom:60px; } }
@media (max-width:600px){ .services-header h2, .testimonials-header h2, .about-header h2, .contact-header h2 { font-size:1.35rem; } }
@media (max-width:480px){ .services-header p, .testimonials-header p, .about-header p, .contact-header p { font-size:.78rem; } }


.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--red);
    color: var(--white);
    width: 20px;
    height: 20px;
    padding: 2px;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ANIMATION */

.right-to-left {
    transition: 1s;
    transform: translateX(100%);
}

.active .right-to-left {
    transform: translateX(0);
}

.bottom-up {
    transition: 1s;
    transform: translateY(100vh);
}

.active .bottom-up {
    transform: translateY(0);
}

.left-to-right {
    transition: 1s;
    transform: translateX(-150%);
}

.active .left-to-right {
    transition: 1s;
    transform: translateX(0);
}

.more-images-item:nth-child(1) {
    transition-delay: .2s;
}

.more-images-item:nth-child(2) {
    transition-delay: .4s;
}

.more-images-item:nth-child(3) {
    transition-delay: .6s;
}

.more-images-item:nth-child(4) {
    transition-delay: .8s;
}

.info-wrapper>div:nth-child(1) {
    transition-delay: .2s;
}

.info-wrapper>div:nth-child(2) {
    transition-delay: .4s;
}

.info-wrapper>div:nth-child(3) {
    transition-delay: .6s;
}

.info-wrapper>div:nth-child(4) {
    transition-delay: .8s;
}

.info-wrapper>div:nth-child(5) {
    transition-delay: 1s;
}

.info-wrapper>div:nth-child(6) {
    transition-delay: 1.2s;
}

.bounce {
    animation-name: bounce;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0% {
        transform: translateY(0) rotate(-35deg);
    }
    50% {
        transform: translateY(-20px) rotate(-35deg);
    }
    100% {
        transform: translateY(0) rotate(-35deg);
    }
}


/* Responsive Design */

@media (max-width: 1200px) {
    .product-name h2 {
        font-size: 2.2rem;
    }
    .product-price {
        font-size: 1.6rem;
    }
    .product-description {
        font-size: 0.85rem;
    }
    .product-info {
        padding: 100px 6% 50px 6%;
    }
    .button {
        margin-top: 0.6rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 30px;
    }
    .navbar .logo {
        font-size: 1.5rem;
    }
    .navbar .logo img {
        height: 80px;
        width: 100px;
    }
    .navbar a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .product-name h2 {
        font-size: 1.8rem;
    }
    .product-price {
        font-size: 1.4rem;
    }
    .product-description {
        font-size: 0.8rem;
    }
    .button>button {
        font-size: 0.9rem;
        padding: 12px 36px;
    }
    .product-info {
        padding: 80px 4% 30px 4%;
    }
    .info-wrapper {
        max-width: 100%;
        min-height: 300px;
    }
    .button {
        margin-top: 0.6rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        height: 60px;
        width: 80px;
    }
}


/* Services Section - Enhanced for Vertical Scroll */

.services-section {
    padding-top: 0px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--silver) var(--black-two);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section::-webkit-scrollbar {
    width: 10px;
}

.services-section::-webkit-scrollbar-track {
    background: var(--black-two);
    border-radius: 5px;
}

.services-section::-webkit-scrollbar-thumb {
    background: var(--silver);
    border-radius: 5px;
}

.services-section::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: auto;
    width: 100%;
    justify-items: center;
    align-items: start;
}


/* Center the last 2 cards in the second row */

.service-card:nth-child(4) {
    grid-column: 2;
}

.service-card:nth-child(5) {
    grid-column: 3;
}


/* For 6 cards, we want a perfect 3-3 layout */

.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
    grid-column: auto;
    /* Reset to auto for 6 cards */
}


/* Responsive adjustments */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .service-card:nth-child(4) {
        grid-column: 1;
    }
    .service-card:nth-child(5) {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1;
    }
}


/* Center the grid container itself */

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-header {
    text-align: center;
    margin: 5px auto;
    /* Reduced margin to 5px */
    padding: 2px 0;
    /* Reduced padding to 2px for tighter spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Centers content vertically */
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    min-height: 30vh;
    /* Reduced to 30vh for less vertical space */
    height: auto;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.services-header p {
    font-size: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    padding-bottom: 2px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
    height: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--white);
    transition: all 0.4s ease;
    display: block;
    line-height: 1;
}


/* Ensure Boxicons are properly loaded and visible */

.bx {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--black-two);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}


/* Ensure sections display properly when shown */

.services-section,
.testimonials-section,
.about-section,
.contact-section {
    transition: opacity 0.3s ease;
}


/* Restore original home section display */

#slider {
    height: 100%;
    overflow: hidden !important;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
}

/* New Welcome Section Styles */
.slider-content {
        display: flex;
        width: 100%;
        /* Fill viewport minus navbar (approx 56px) */
        min-height: calc(100vh - 56px);
        height: calc(100vh - 56px);
        align-items: center;
        padding-top: 0;
        box-sizing: border-box;
        overflow: hidden;
}
/* If navbar height changes (mobile), adjust via media queries */
@media (max-width: 820px){
    .slider-content { height:auto; min-height:calc(100vh - 56px); padding-top:60px; }
}

.welcome-info {
    flex: 1;
    padding: 0 4vw;
    max-width: 50%;
    z-index: 2;
    height: 100%;
}

.welcome-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.welcome-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: flex-start; /* default align left on desktop */
    gap: 1rem;
}

@media (max-width: 820px) {
    /* Center welcome content on mobile */
    .welcome-container {
        align-items: center !important;
        text-align: center !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .welcome-info { max-width: 100%; padding-left: 0.75rem; padding-right: 0.75rem; }
}

.brand-name {
    background: linear-gradient(135deg, #2a6aff, #6fb8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.welcome-header h2 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.welcome-description {
    margin-bottom: 2rem;
}

.welcome-description p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #6b7280;
    line-height: 1.6;
    max-width: 90%;
}

@media (max-width: 820px) {
    .welcome-description { display:flex; justify-content:center; }
    .welcome-description p { max-width:640px; width:100%; text-align:center; margin-left:auto; margin-right:auto; }
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-item i {
    font-size: 1.2rem;
    color: #2a6aff;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.cta-primary {
    background: #111;
    color: #fff;
    box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.35);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #2a6aff;
    border: 2px solid #2a6aff;
    text-decoration: none;
}

.cta-secondary:hover {
    background: #2a6aff;
    color: white;
    transform: translateY(-2px);
}

/* =============================================
     Responsive Slider Redesign (Progressive Enhancement)
     - Keeps existing desktop structure
     - Adds swipe, arrows, and stacked mobile layout
     ============================================= */
.slider { position: relative; }
.slider-arrows { position:absolute; top:50%; left:0; right:0; display:flex; justify-content:space-between; padding:0 18px; transform:translateY(-50%); pointer-events:none; z-index:20; }
.slider-arrow { pointer-events:auto; background:rgba(255,255,255,0.85); border:1px solid var(--minimal-border, rgba(0,0,0,0.08)); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; font-weight:600; cursor:pointer; box-shadow:0 4px 14px -4px rgba(0,0,0,0.18); transition:background .3s, transform .3s, box-shadow .3s; }
.slider-arrow:hover { background:#fff; transform:scale(1.05); box-shadow:0 8px 24px -6px rgba(0,0,0,0.25); }
.slider-arrow:active { transform:scale(0.95); }

/* Mobile-first stacked slide layout */
@media (max-width: 820px) {
    #slider { height:100%; }
    .slide { position:relative; flex-direction:column; height:auto; min-height:calc(100vh - 60px); padding-top:70px; display:none; }
    .slide.active { display:flex; }
    .col-6 { width:100%; }
    .img-col { order:1; border-bottom-left-radius:0; height:auto; min-height:320px; display:flex; align-items:center; justify-content:center; padding:40px 0 20px; }
    .product-info { order:2; position:relative; padding:0 20px 50px; }
    .product-img { position:relative; top:auto; left:auto; transform:none; width:100%; }
    .product-img .img-wrapper { max-width:360px; margin:0 auto; }
    .product-img img { width:100%; height:auto; }
    .more-images { position:relative; bottom:auto; left:auto; transform:none; display:flex; justify-content:center; gap:10px; margin:22px auto 10px; }
    .more-images-item { width:60px; height:60px; border-radius:14px; overflow:hidden; box-shadow:0 4px 12px rgba(0,0,0,0.12); background:#fff; display:flex; align-items:center; justify-content:center; }
    .more-images-item img { width:100%; height:100%; object-fit:cover; filter:grayscale(30%); transition:filter .3s, transform .35s; }
    .more-images-item:hover img { filter:none; transform:scale(1.08); }
    .slider-arrows { top:auto; bottom:18px; transform:none; padding:0 70px; }
    .slider-arrow { width:44px; height:44px; font-size:1.3rem; }
    .slide-control { position:relative; bottom:auto; left:auto; transform:none; margin:28px auto 10px; background:rgba(255,255,255,0.9); padding:12px 18px; gap:10px; }
    .slide-control div { width:44px; height:44px; margin:0; }
    .slide-control div img { transform:rotate(-35deg); }
    .slide-control div:hover img { transform:rotate(-35deg) scale(1.06); }
    .product-name h2 { font-size:clamp(1.4rem,1.1rem + 1.4vw,2.05rem); }
    .product-description p, .product-description { font-size:.9rem; line-height:1.45; }
    .size-wrapper { display:flex; flex-wrap:wrap; gap:8px; }
    .size-wrapper div { flex:0 0 calc(16.6% - 4px); text-align:center; font-size:.65rem; padding:6px 4px; }
}

/* Narrow phones tweaks */
@media (max-width: 480px) {
    .slider-arrows { padding:0 46px; }
    .slider-arrow { width:40px; height:40px; font-size:1.15rem; }
    .more-images-item { width:54px; height:54px; }
    .slide-control { gap:8px; padding:10px 14px; }
    .slide-control div { width:40px; height:40px; }
}

/* Motion safe enhancements */
@media (prefers-reduced-motion: reduce) {
  .slider-arrow, .slide, .more-images-item img { transition:none !important; animation:none !important; }
}

/* Shoe Showcase Styles */
.shoe-showcase {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Physical store background image with dark overlay for shoe showcase */
.shoe-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/physical store.jpg');
    background-size: cover;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

/* Dark overlay to make floating shoes pop */
.shoe-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.74) 0%,
        rgba(0, 0, 0, 0.733) 50%,
        rgba(0, 0, 0, 0.699) 100%
    );
    z-index: 1;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Ensure shoes appear above background layers */
}

.floating-shoe {
    position: absolute;
    width: clamp(480px, 40vw, 640px);
    height: auto;
    opacity: 0;
    transform: rotate(-25deg) scale(0.8);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 40px rgba(42, 106, 255, 0.4)) drop-shadow(0 0 80px rgba(42, 106, 255, 0.2));
}

.floating-shoe.active {
    opacity: 1;
    transform: rotate(-25deg) scale(1);
    z-index: 10;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 50px rgba(42, 106, 255, 0.6)) drop-shadow(0 0 100px rgba(42, 106, 255, 0.3));
}

.floating-shoe img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.shoe-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(25deg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.floating-shoe.active .shoe-label {
    opacity: 1;
}



/* Responsive Design */
@media (max-width: 820px) {
    .slider-content {
        flex-direction: column;
        padding: 60px 0 40px;
    }
    
    .welcome-info {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .shoe-showcase {
        height: 300px;
        margin-top: 1rem;
    }
    
    .floating-shoe {
        width: clamp(220px, 60vw, 280px);
    }
    
    .welcome-actions {
        justify-content: center;
    }
}
/* Testimonials Section - Enhanced with Services-like UI */

.testimonials-section {
    padding-top: 0px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--silver) var(--black-two);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section::-webkit-scrollbar {
    width: 10px;
}

.testimonials-section::-webkit-scrollbar-track {
    background: var(--black-two);
    border-radius: 5px;
}

.testimonials-section::-webkit-scrollbar-thumb {
    background: var(--silver);
    border-radius: 5px;
}

.testimonials-section::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    text-align: center;
    margin: 5px auto;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    min-height: 30vh;
    height: auto;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.testimonials-header p {
    font-size: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    padding-bottom: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: auto;
    width: 100%;
    justify-items: center;
    align-items: start;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    height: auto;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}


/* Placeholder for missing images */

.testimonial-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--black-two);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--black-two);
}


/* Responsive Testimonials */

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .testimonial-card {
        padding: 25px 20px;
    }
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    .testimonials-header p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 25px 20px;
        min-height: 250px;
    }
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    .testimonials-header h2 {
        font-size: 2rem;
    }
    .testimonials-header p {
        font-size: 1rem;
    }
}


/* About Us Section - Enhanced with Impressive UI */

.about-section {
    padding-top: 0px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--silver) var(--black-two);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section::-webkit-scrollbar {
    width: 10px;
}

.about-section::-webkit-scrollbar-track {
    background: var(--black-two);
    border-radius: 5px;
}

.about-section::-webkit-scrollbar-thumb {
    background: var(--silver);
    border-radius: 5px;
}

.about-section::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-header {
    text-align: center;
    margin: 5px auto;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    min-height: 30vh;
    height: auto;
}

.about-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.about-header p {
    font-size: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    padding-bottom: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    width: 100%;
    align-items: start;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.about-text:hover::before {
    transform: scaleX(1);
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 20px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--black-two);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-text li {
    font-size: 1.1rem;
    color: var(--black-two);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-one);
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text li:hover {
    transform: translateX(5px);
    color: var(--black);
}


/* About Stats Section */

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--black-two);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* About Image Section */

.about-image-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-image-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.about-image-card:hover::before {
    transform: scaleX(1);
}

.about-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: all 0.4s ease;
}

.about-image-card:hover .about-image-placeholder {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.about-image-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.about-image-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.about-image-card p {
    font-size: 1rem;
    color: var(--black-two);
    line-height: 1.6;
    margin: 0;
}


/* Responsive About Us */

@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text {
        padding: 35px;
    }
    .about-header h2 {
        font-size: 2.2rem;
    }
    .about-header p {
        font-size: 1rem;
    }
    .about-text h3 {
        font-size: 1.6rem;
    }
    .about-text p {
        font-size: 1rem;
    }
    .about-text li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        gap: 30px;
    }
    .about-text {
        padding: 25px;
    }
    .about-header h2 {
        font-size: 2rem;
    }
    .about-header p {
        font-size: 1rem;
    }
    .about-text h3 {
        font-size: 1.4rem;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    .about-text li {
        font-size: 0.95rem;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-card {
        padding: 20px 15px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .about-image-card {
        padding: 25px 20px;
    }
    .about-image-placeholder {
        width: 100px;
        height: 100px;
    }
    .about-image-placeholder i {
        font-size: 2.5rem;
    }
    .about-image-card h4 {
        font-size: 1.2rem;
    }
    .about-image-card p {
        font-size: 0.9rem;
    }
}


/* Contact Section - Enhanced with Impressive UI */

.contact-section {
    padding-top: 0px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--silver) var(--black-two);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-section::-webkit-scrollbar {
    width: 10px;
}

.contact-section::-webkit-scrollbar-track {
    background: var(--black-two);
    border-radius: 5px;
}

.contact-section::-webkit-scrollbar-thumb {
    background: var(--silver);
    border-radius: 5px;
}

.contact-section::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin: 5px auto;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    min-height: 30vh;
    height: auto;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    padding-bottom: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    width: 100%;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.contact-info:hover::before {
    transform: scaleX(1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--black);
    margin-top: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.contact-item p {
    font-size: 1rem;
    color: var(--black-two);
    line-height: 1.6;
    margin: 0;
}


/* Social Media Section */

.social-media-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.social-media-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.social-media-section:hover::before {
    transform: scaleX(1);
}

.social-media-header {
    text-align: center;
    margin-bottom: 30px;
}

.social-media-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.social-media-header p {
    font-size: 1rem;
    color: var(--black-two);
    line-height: 1.6;
    margin: 0;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-media-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.social-media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.social-media-card:hover::before {
    transform: scaleX(1);
}

.social-media-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-media-card:hover .social-media-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-media-icon i {
    font-size: 1.8rem;
    color: var(--white);
    display: block;
    line-height: 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 3;
}


/* Social Media Brand Colors */

.social-media-card.facebook .social-media-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.social-media-card.instagram .social-media-icon {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fca326 100%);
}

.social-media-card.twitter .social-media-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0ea5e9 100%);
}

.social-media-card.youtube .social-media-icon {
    background: linear-gradient(135deg, #ff0000 0%, #dc2626 100%);
}

.social-media-card.tiktok .social-media-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
}

.social-media-card.messenger .social-media-icon {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
}


/* Ensure all social media icons are visible */

.social-media-icon i {
    font-size: 1.8rem;
    color: var(--white);
    display: block;
    line-height: 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Specific TikTok icon styling to ensure visibility */

.social-media-card.tiktok .social-media-icon i {
    font-size: 1.6rem;
    color: var(--white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}


/* TikTok image styling */

.tiktok-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes the image white */
    transition: all 0.3s ease;
}

.social-media-card:hover .tiktok-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


/* Ensure Boxicons are properly loaded for social media */

.bxl-facebook,
.bxl-instagram,
.bxl-tiktok,
.bxl-messenger {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Fix TikTok icon class */

.bxl.bx-tiktok {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.social-media-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.social-media-card p {
    font-size: 0.9rem;
    color: var(--black-two);
    margin: 0;
    font-weight: 500;
}


/* Contact Form Section */

.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 30px;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.contact-form-section:hover::before {
    transform: scaleX(1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--black-two);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--black);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}


/* Responsive Contact Us */

@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info,
    .social-media-section {
        padding: 35px;
    }
    .contact-header h2 {
        font-size: 2.2rem;
    }
    .contact-header p {
        font-size: 1rem;
    }
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        gap: 30px;
    }
    .contact-info,
    .social-media-section,
    .contact-form-section {
        padding: 25px;
    }
    .contact-header h2 {
        font-size: 2rem;
    }
    .contact-header p {
        font-size: 1rem;
    }
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    .contact-item i {
        font-size: 1.5rem;
    }
    .contact-item h4 {
        font-size: 1.1rem;
    }
    .contact-item p {
        font-size: 0.9rem;
    }
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .social-media-card {
        padding: 20px 15px;
    }
    .social-media-icon {
        width: 50px;
        height: 50px;
    }
    .social-media-icon i {
        font-size: 1.5rem;
    }
    .social-media-card h4 {
        font-size: 1rem;
    }
    .social-media-card p {
        font-size: 0.8rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}


/* POS Style Reservation System */

.reservation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
}

.reservation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.reservation-container {
    position: relative;
    z-index: 1002;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reservation-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.reservation-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.reservation-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.close-reservation {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-reservation:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-reservation i {
    font-size: 1.5rem;
}


/* Category Selection */

.category-selection {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.category-card p {
    font-size: 1rem;
    color: var(--black-two);
    margin-bottom: 15px;
}

.category-count {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}


/* Product Selection */

.product-selection {
    padding: 40px;
}

.selection-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.back-to-categories {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-categories:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.selection-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.reserve-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}


/* Reservation Form */

.reservation-form {
    padding: 40px;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.back-to-products {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-products:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.selected-product-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.selected-product-info img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.product-details p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.size-selection label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--black-two);
}

.size-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.size-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}


/* Form Styling */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


/* Reservation Summary */

.reservation-summary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.reservation-summary h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #667eea;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

.submit-reservation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}


/* Responsive Design */

@media (max-width: 768px) {
    .reservation-container {
        margin: 10px;
        border-radius: 15px;
    }
    .reservation-header {
        padding: 20px;
    }
    .reservation-header h2 {
        font-size: 2rem;
    }
    .category-selection {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-card {
        padding: 30px 20px;
    }
    .product-selection,
    .reservation-form {
        padding: 20px;
    }
    .selected-product-info {
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .size-options {
        justify-content: center;
    }
}


/* POS Sidebar Styles */

.pos-sidebar {
    width: 280px;
    background: linear-gradient(to top right, #112c70, #2a6aff);
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-logo {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.logo-placeholder {
    width: 140px;
    height: 90px;
    background: transparent;
    border: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: transparent;
    border: none;
}

.business-logo {
    width: 180px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo-placeholder:hover .business-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.sidebar-logo h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
    margin: 0 10px;
    border-radius: 8px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nav-item i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.nav-item span {
    font-weight: 500;
}


/* Enhanced sneaker icon styling */

.nav-item[data-section="conversion"] .nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.nav-item[data-section="conversion"]:hover .nav-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
}

.nav-item[data-section="conversion"].active .nav-icon {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
}


/* Enhanced text styling for Shoe Conversion */

.nav-item[data-section="conversion"] span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-item[data-section="conversion"]:hover span {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-item[data-section="conversion"].active span {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.user-profile {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.customer-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info {
    flex: 1;
}

.profile-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.profile-info p {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin: 0;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Main Content Area */

.pos-main {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.pos-header {
    padding: 20px 30px;
    background: white;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-left h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to top right, #112c70, #2a6aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.header-right {
    display: flex;
    gap: 20px;
}

.time-display,
.date-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: #f8f9fa;
    padding: 8px 12px;
}

.time-display i,
.date-display i {
    font-size: 1.1rem;
}

.pos-content {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
}

.filter-btn[data-category="all"] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.filter-btn[data-category="men"] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.filter-btn[data-category="women"] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.filter-btn[data-category="accessories"] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.filter-btn.active {
    background: linear-gradient(to top right, #112c70, #2a6aff);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(50, 81, 154, 0.3);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
    width: 250px;
    flex-shrink: 0;
    height: 44px;
    box-sizing: border-box;
}

.search-bar i {
    color: #6c757d;
    margin-right: 10px;
    font-size: 1.1rem;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
}

.clear-search {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clear-search:hover {
    background: #f8f9fa;
    color: #e74c3c;
}


/* Products Grid */

.products-grid {
    flex: 1;
    padding: var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    overflow-y: auto;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: var(--radius-xl);
    margin: var(--spacing-md);
    min-height: 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 1px solid var(--gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, #133288 0%, #3273ff 100%);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 300;
    /* Thinner weight */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.product-infos {
    padding: 4px;
    /* Reduced from var(--spacing-sm) */
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 2px;
    /* Reduced from var(--spacing-xs) */
}

.product-name {
    font-size: 0.8rem;
    /* Slightly smaller */
    min-height: 1.2rem;
    /* Less space */
    margin: 0;
}

.product-brand {
    color: var(--primary);
    font-family: var(--font-secondary);
    font-weight: 300;
    /* Thinner weight */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.product-price {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 300;
    /* Thinner weight */
    color: var(--success);
}

.product-stock {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 300;
    /* Thinner weight */
    background: var(--gray-100);
    padding: 2px var(--spacing-xs);
    border-radius: var(--radius-sm);
}

.product-sizes {
    display: flex;
    gap: 2px;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}

.size-label {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 300;
    /* Thinner weight */
    color: var(--gray-600);
    margin-right: 4px;
}

.size-badge {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 300;
    /* Thinner weight */
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.size-badge:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.size-badge.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(50, 81, 154, 0.3);
}

.size-badge.selected:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(50, 81, 154, 0.4);
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(to top right, #112c70, #2a6aff);
    color: var(--white);
    border: none;
    padding: var(--spacing-xs);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 300;
    /* Thinner weight */
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: auto;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #32519a 0%, #4967af 100%) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.add-to-cart-btn:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn.ready {
    background: linear-gradient(to top right, #28a745, #20c997);
    animation: pulse 2s infinite;
}

.add-to-cart-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.add-to-cart-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.product-stock.out-of-stock {
    color: #dc3545;
    font-weight: 600;
}

.product-stock.in-stock {
    color: #28a745;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}


/* Right Sidebar - Shopping Cart */

.pos-cart {
    width: 350px;
    background: white;
    border-left: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-title i {
    font-size: 1.3rem;
    color: #495057;
}

.cart-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.clear-cart {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.clear-cart:hover {
    background: #c0392b;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-cart h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.empty-cart p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 15px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.cart-item-row:last-child {
    margin-bottom: 0;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.cart-item-size {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.cart-item-price {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    background: #333;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity-btn:hover:not(:disabled) {
    transform: scale(1.05);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.quantity-btn.minus {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.quantity-btn.plus {
    background: linear-gradient(135deg, #56ab2f, #94d049);
}

.quantity {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    font-size: 1rem;
    color: #333;
}


/* Order Summary */

.order-summary {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.summary-item.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #495057;
    border-top: 1px solid #e9ecef;
    padding-top: 8px;
    margin-top: 8px;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.cancel-order-btn,
.reserve-order-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cancel-order-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.cancel-order-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.reserve-order-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.reserve-order-btn:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.cancel-order-btn:disabled,
.reserve-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cancel-order-btn:disabled:hover,
.reserve-order-btn:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .pos-cart {
        width: 320px;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .reservation-container {
        flex-direction: column;
    }
    .pos-sidebar {
        width: 100%;
        height: auto;
    }
    .pos-cart {
        width: 100%;
        height: 50vh;
    }
    .sidebar-nav {
        display: flex;
        padding: 10px;
    }
    .nav-item {
        flex: 1;
        justify-content: center;
        padding: 10px;
    }
    .category-filters {
        flex-wrap: wrap;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    /* Responsive business logo */
    .logo-placeholder {
        width: 120px;
        height: 80px;
    }
    .business-logo {
        width: 120px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        width: 100px;
        height: 70px;
    }
    .business-logo {
        width: 100px;
        height: 70px;
    }
}
/* =============================================
   Ad-like Shoe Showcase Enhancements Override
   ============================================= */
.shoe-showcase .showcase-container { perspective: 1000px; }
.shoe-showcase .shoe-scroll-track { display:flex; flex-direction:column; align-items:center; gap:80px; padding:40px 0; }
.shoe-showcase .shoe-scroll-track .floating-shoe { position:relative; width:clamp(340px,34vw,520px); opacity:0.4; transform:rotate(-25deg) scale(0.7); filter:drop-shadow(0 15px 35px rgba(0,0,0,0.15)) drop-shadow(0 0 45px rgba(42,106,255,0.5)) drop-shadow(0 0 90px rgba(42,106,255,0.3)); transition:all .8s cubic-bezier(0.4,0,0.2,1); animation: none !important; }
.shoe-showcase .shoe-scroll-track .floating-shoe.active { opacity:1; transform:rotate(-25deg) scale(1.15); filter:drop-shadow(0 20px 45px rgba(0,0,0,0.2)) drop-shadow(0 0 60px rgba(42,106,255,0.7)) drop-shadow(0 0 120px rgba(42,106,255,0.5)); }
.shoe-showcase .shoe-scroll-track .floating-shoe.previous { opacity:.3; transform:rotate(-25deg) scale(.6); filter:drop-shadow(0 10px 25px rgba(0,0,0,0.1)) drop-shadow(0 0 30px rgba(42,106,255,0.3)) drop-shadow(0 0 60px rgba(42,106,255,0.2)); }
.shoe-showcase .ad-spotlight { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:clamp(380px,46vw,680px); height:clamp(380px,46vw,680px); border-radius:50%; background:radial-gradient(closest-side, rgba(42,106,255,0.28), rgba(42,106,255,0.12) 55%, rgba(42,106,255,0) 72%); filter:blur(12px) saturate(110%); mix-blend-mode:screen; pointer-events:none; opacity:.85; z-index:1; }
.shoe-showcase .showcase-indicators { position:absolute; right:18px; top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:10px; z-index:3; }
.shoe-showcase .indicator-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.65); border:1px solid rgba(0,0,0,0.08); box-shadow:0 2px 6px rgba(0,0,0,0.12),0 0 0 2px rgba(42,106,255,0); transition:transform .25s ease, box-shadow .25s ease, background .25s ease; cursor:pointer; }
.shoe-showcase .indicator-dot:hover { transform:scale(1.15); }
.shoe-showcase .indicator-dot.active { background:#2a6aff; box-shadow:0 4px 14px rgba(42,106,255,0.6),0 0 0 2px rgba(42,106,255,0.25); }
.shoe-showcase .shoe-scroll-track .floating-shoe .shoe-label { background:linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85)); border:1px solid rgba(255,255,255,0.6); backdrop-filter:blur(10px); box-shadow:0 10px 22px -8px rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.04) inset; opacity:1; transform:translateX(-50%) rotate(25deg); }
@media (max-width:820px){ .shoe-showcase .showcase-indicators { right:10px; gap:8px; } .shoe-showcase .indicator-dot { width:9px; height:9px; } }