@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #008a45; /* BD Green */
    --primary-hover: #006e37;
    --secondary-color: #e30613; /* BD Red */
    --secondary-hover: #be0510;
    --dark-bg: #071a2c; /* Navy slate dark for header/footer */
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.logo-container img {
    height: 60px;
    object-fit: contain;
}

/* Search Bar */
.search-container {
    flex-grow: 1;
    max-width: 600px;
    position: relative;
}
.search-form {
    display: flex;
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}
.search-form:focus-within {
    border-color: var(--primary-color);
}
.search-input {
    flex-grow: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    font-family: var(--font-body);
}
.search-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.search-btn:hover {
    background-color: var(--secondary-hover);
}

/* Autocomplete Suggestion Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}
.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}
.suggestion-item:last-child {
    border-bottom: none;
}
.suggestion-item:hover {
    background-color: var(--light-bg);
}
.suggestion-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}
.suggestion-info {
    flex-grow: 1;
}
.suggestion-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.suggestion-price {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Contact & Cart Trigger */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-track-order {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.25);
}
.btn-track-order:hover {
    background-color: var(--secondary-hover);
    color: #ffffff;
    transform: translateY(-1px);
}
.btn-header-phone {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 138, 69, 0.25);
}
.btn-header-phone:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
}
.cart-trigger {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.25);
}
.cart-trigger:hover {
    background-color: var(--secondary-hover);
}
.cart-count-badge {
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

/* Navigation Bar */
.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 99;
}
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}
.nav-links li {
    position: relative;
}
.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.nav-links a:hover, .nav-links li.active a {
    color: var(--primary-color);
}
.nav-links a i {
    font-size: 16px;
}

/* Dropdown Categories */
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 8px 8px;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 500;
}
.nav-links li:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.category-dropdown a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}
.category-dropdown li:last-child a {
    border-bottom: none;
}
.category-dropdown a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Slider Section */
.hero-slider {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background-color: var(--dark-bg);
}
.slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 400px;
    background: linear-gradient(135deg, #071a2c 40%, #008a45 100%);
    color: var(--white);
    padding: 0 60px;
    position: relative;
}
.slide-content {
    max-width: 50%;
    z-index: 2;
}
.slide-tag {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.slide-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.slide-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}
.btn-slider {
    background-color: var(--white);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}
.btn-slider:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}
.slide-image {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.slide-image img {
    max-height: 90%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    position: relative;
}
.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}
.section-title {
    font-size: 24px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-shop-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
}
.btn-shop-more:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Product Cards and Grid */
.products-carousel, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 138, 69, 0.2);
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}
.product-image {
    height: 220px;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-image img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: var(--transition);
}
.product-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-category {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}
.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 12px;
}
.current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}
.old-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}
.btn-order-now {
    background-color: var(--dark-bg);
    color: var(--white);
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.product-card:hover .btn-order-now {
    background-color: var(--primary-color);
}
.btn-order-now:hover {
    background-color: var(--primary-hover) !important;
}

/* Category Grid Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.category-card {
    background: #b8d1e6; /* Premium Light Blue-Grey Background from Screenshot */
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    aspect-ratio: unset;
    height: auto;
}
.category-card:hover {
    transform: translateY(-5px);
    background-color: #a4c0d8; /* Sleek darker blue-grey on hover */
    color: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.category-card-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.category-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.category-card-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}
.category-card:hover .category-card-icon img {
    transform: scale(1.08);
}
.category-card:hover .category-card-icon i {
    transform: scale(1.1);
}
.category-card-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f2937;
    margin-top: 5px;
    word-break: break-word;
}

/* Sticky Cart Badge */
.sticky-cart-badge {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}
.sticky-cart-badge:hover {
    transform: translateY(-53%) scale(1.05);
    border-color: var(--secondary-color);
}
.sticky-cart-icon {
    font-size: 24px;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 5px;
}
.sticky-cart-count {
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 800;
}
.sticky-cart-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Sliding Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: var(--transition);
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
    right: 0;
}
.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-bg);
}
.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-drawer-title i {
    color: var(--primary-color);
}
.btn-close-drawer {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-gray);
}
.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-gray);
    text-align: center;
}
.cart-drawer-empty i {
    font-size: 50px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.cart-drawer-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
.cart-drawer-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: var(--light-bg);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
.cart-drawer-item-details {
    flex-grow: 1;
}
.cart-drawer-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cart-drawer-item-price {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 700;
}
.cart-drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.qty-btn {
    border: 1px solid var(--border-color);
    background-color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}
.qty-btn:hover {
    background-color: var(--light-bg);
}
.qty-val {
    font-size: 13px;
    font-weight: 600;
}
.btn-remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.btn-remove-item:hover {
    color: var(--secondary-color);
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-bg);
}
.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}
.cart-drawer-total span:last-child {
    color: var(--secondary-color);
}
.cart-drawer-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.btn-drawer-checkout {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}
.btn-drawer-checkout:hover {
    background-color: var(--primary-hover);
}

/* Footer Section */
.footer {
    background-color: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px 0;
    margin-top: 60px;
}
.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}
.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 13px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '→';
    color: var(--secondary-color);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}
.footer-contact {
    list-style: none;
    font-size: 13px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.footer-contact i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* Product Detail Page */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
    border: 1px solid var(--border-color);
}
.product-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.product-detail-img-wrapper {
    background-color: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}
.product-detail-img-wrapper img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.2s ease-out;
}
.product-detail-info {
    display: flex;
    flex-direction: column;
}
.product-detail-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.product-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.product-detail-category a {
    color: var(--primary-color);
    font-weight: 600;
}
.product-detail-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.product-detail-current-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
}
.product-detail-old-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-detail-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Quick Order Section inside Product Details */
.quick-order-panel {
    background: linear-gradient(135deg, #eef7f2 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: auto;
}
.quick-order-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.quick-order-title i {
    font-size: 22px;
}
.quick-order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}
.form-control {
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    font-family: var(--font-body);
}
.form-control:focus {
    border-color: var(--primary-color);
}
.form-radio-group {
    display: flex;
    gap: 20px;
    margin: 5px 0;
}
.form-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.quick-order-summary {
    background-color: var(--white);
    padding: 12px;
    border-radius: 6px;
    border: 1px dashed var(--border-color);
    font-size: 13px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.summary-row:last-child {
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 5px;
    font-weight: 700;
}
.btn-submit-order {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-submit-order:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
}

/* Category Page */
.category-header {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
}
.category-header h1 {
    font-size: 26px;
    color: var(--text-dark);
}

/* Cart Page */
.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.cart-items-panel {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th {
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 1.5px solid var(--border-color);
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
}
.cart-table td {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.cart-table tr:last-child td {
    border-bottom: none;
}
.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-prod-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
}
.cart-prod-name {
    font-size: 14px;
    font-weight: 600;
}
.cart-checkout-panel {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}
.cart-checkout-title {
    font-size: 18px;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* Order Success Page */
.success-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
    box-shadow: var(--shadow-md);
}
.success-icon {
    width: 80px;
    height: 80px;
    background-color: #f0fff4;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px auto;
}
.success-card h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 26px;
}
.order-number {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    padding: 10px;
    background-color: var(--light-bg);
    border-radius: 6px;
    border: 1px dashed var(--border-color);
}
.btn-back-home {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}
.btn-back-home:hover {
    background-color: var(--primary-hover);
}

/* Quick Order Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}
.modal-overlay.open {
    display: flex;
    opacity: 1;
}
.modal-overlay.open .modal-content {
    transform: scale(1);
}
.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-body {
    padding: 25px;
}
.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .logo-container {
        text-align: center;
    }
    .header-actions {
        justify-content: space-between;
    }
    .slide {
        flex-direction: column-reverse;
        height: auto;
        padding: 30px;
        text-align: center;
    }
    .slide-content {
        max-width: 100%;
        margin-top: 20px;
    }
    .slide-image {
        width: 100%;
        height: 200px;
    }
    .slide-title {
        font-size: 28px;
    }
    .products-carousel, .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    .product-image {
        height: 160px;
    }
    .category-card {
        padding: 10px;
    }
    .category-card-icon {
        width: 100%;
    }
    .sticky-cart-badge {
        right: 15px;
        bottom: 80px;
        top: auto;
        transform: none;
    }
    .sticky-cart-badge:hover {
        transform: scale(1.05);
    }
    .scroll-to-top {
        left: 15px;
        bottom: 80px;
    }
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none; /* Hide price column on small screens */
    }
    .form-row-grid {
        grid-template-columns: 1fr;
    }
}

/* Antigravity Product Page Enhancements */
.product-detail-gallery {
    width: 100%;
}
.product-gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
}
.product-gallery-thumb {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--light-bg);
    transition: all 0.2s ease-in-out;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Size Option Selection */
.product-option-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.size-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.size-option-pill {
    padding: 8px 18px;
    background-color: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
}
.size-option-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f0fdf4;
}
.size-option-pill.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 138, 69, 0.2);
}
.size-option-pill.out-of-stock {
    opacity: 0.6;
    background-color: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    text-decoration: line-through;
}
.size-option-pill.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1.5px;
    background-color: #ef4444;
    transform: rotate(-15deg);
}

/* Color Option Selection */
.color-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}
.color-option-swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.color-option-swatch:hover {
    transform: scale(1.12);
    border-color: var(--primary-color);
}
.color-option-swatch.active {
    border-color: #0f172a;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary-color);
    transform: scale(1.08);
}
.color-option-swatch.out-of-stock {
    opacity: 0.55;
}
.color-option-swatch.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    right: 3px;
    height: 2px;
    background: #ef4444;
    transform: rotate(-45deg);
    z-index: 5;
}
.color-option-pill {
    padding: 8px 16px;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}
.color-option-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.color-option-pill.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 138, 69, 0.2);
}

/* Stock Status Indicators */
.stock-status-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 15px;
    transition: all 0.25s ease;
}
.stock-status-box.in-stock {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.stock-status-box.in-stock .stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: pulse-green 2s infinite;
}
.stock-status-box.low-stock {
    background-color: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}
.stock-status-box.low-stock .stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}
.stock-status-box.out-of-stock {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.stock-status-box.out-of-stock .stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
}
.btn-disabled {
    background-color: #94a3b8 !important;
    border-color: #94a3b8 !important;
    color: #f1f5f9 !important;
    cursor: not-allowed !important;
    opacity: 0.75 !important;
    pointer-events: none !important;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Quantity Selector Option */
.qty-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}
.qty-btn {
    width: 38px;
    height: 38px;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #334155;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.15s ease;
}
.qty-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}
.qty-btn:active {
    transform: scale(0.95);
}
.qty-input {
    width: 55px;
    height: 38px;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    background-color: #fff;
}

/* Cost Summary UI Highlights */
.quick-order-summary {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1.5px dashed #cbd5e1;
    font-size: 14px;
    color: #4a5568;
    margin-top: 15px;
}
.quick-order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}
.quick-order-summary .summary-row:last-child {
    border-bottom: none;
    font-weight: 800;
    color: #0f172a;
    font-size: 16px;
    padding-top: 10px;
    border-top: 1.5px solid #e2e8f0;
    margin-top: 5px;
}

/* Micro-animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(227, 6, 19, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}
.btn-submit-order {
    animation: pulseGlow 2.5s infinite;
}

/* Color Swatch with Image */
.color-option-swatch {
    width: 60px;
    height: 60px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    background-color: #fff;
    padding: 2px;
}
.color-option-swatch:hover,
.color-option-swatch.active {
    border-color: var(--primary-color) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 92, 0, 0.15);
}

/* Product Options Info Sub-Grid */
.product-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .product-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Tabs styles */
.product-tab-btn {
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.product-tab-btn.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
}

/* Action button scales */
.btn-action-call {
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-action-call:hover {
    background-color: #e25200 !important;
    transform: translateY(-1px);
}
.btn-action-whatsapp {
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-action-whatsapp:hover {
    background-color: #1ebea5 !important;
    transform: translateY(-1px);
}
.btn-action-store {
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-action-store:hover {
    background-color: #cbd5e1 !important;
    transform: translateY(-1px);
}

/* Mobile Responsive Drawer Styling (Shared/Loaded on all sizes but hidden by default) */
.mobile-menu-drawer-overlay {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.15);
    z-index: 100010;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.mobile-menu-drawer .drawer-header {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.mobile-menu-drawer .drawer-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.mobile-menu-drawer .drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.mobile-menu-drawer .drawer-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-drawer .drawer-body ul li {
    border-bottom: 1px solid #f1f5f9;
}
.mobile-menu-drawer .drawer-body ul li a {
    display: block;
    padding: 12px 20px;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}
.mobile-menu-drawer .drawer-body ul li a:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}
.mobile-menu-drawer .drawer-body ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}
.mobile-menu-drawer .drawer-body .drawer-section-title {
    padding: 12px 20px;
    font-weight: 700;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

/* Mobile responsive styles */
.mobile-header {
    display: none;
}
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    /* Hide desktop elements */
    .top-header, 
    .main-nav,
    .sticky-cart-badge,
    .scroll-to-top {
        display: none !important;
    }

    /* Body padding for bottom bar */
    body {
        padding-bottom: 60px !important;
    }

    /* Mobile Header Layout */
    .mobile-header {
        display: block;
        background-color: var(--primary-color);
        position: sticky;
        top: 0;
        z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .mobile-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 15px;
    }
    .mobile-menu-toggle,
    .mobile-search-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        padding: 5px;
    }
    .mobile-header .logo-container img {
        height: 35px;
        object-fit: contain;
    }
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .mobile-cart-trigger {
        background: none;
        border: none;
        color: #fff;
        font-size: 22px;
        position: relative;
        cursor: pointer;
        padding: 5px;
    }
    .mobile-cart-trigger .cart-count-badge {
        position: absolute;
        top: -2px;
        right: -8px;
        background-color: #fff;
        color: var(--primary-color);
        font-size: 10px;
        font-weight: 800;
        padding: 2px 5px;
        border-radius: 10px;
        line-height: 1;
        min-width: 14px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* Mobile Search Bar Dropdown */
    .mobile-search-bar {
        background-color: #fff;
        padding: 10px 15px;
        border-bottom: 1px solid #e2e8f0;
    }
    .mobile-search-bar .search-form {
        display: flex;
        width: 100%;
        border: 1.5px solid #cbd5e1;
        border-radius: 6px;
        overflow: hidden;
    }
    .mobile-search-bar .search-input {
        flex-grow: 1;
        border: none;
        padding: 8px 12px;
        font-size: 14px;
        outline: none;
    }
    .mobile-search-bar .search-btn {
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        padding: 0 15px;
        cursor: pointer;
    }

    /* Mobile Sticky Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #ffffff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid #e2e8f0;
    }
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #64748b;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        flex-grow: 1;
        height: 100%;
        transition: color 0.2s;
    }
    .mobile-nav-item i {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .mobile-nav-item:hover,
    .mobile-nav-item.active {
        color: var(--primary-color);
    }

    /* Product Grid: 2 Columns on Mobile */
    .product-grid,
    .products-grid,
    .products-carousel {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 10px;
    }
    .product-card {
        border-radius: 8px;
    }
    .product-image img {
        height: 160px !important;
        object-fit: cover !important;
    }
    .product-name,
    .product-name a {
        font-size: 13px !important;
        line-height: 1.3 !important;
        height: 34px !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        margin: 5px 0 !important;
    }
    .product-pricing {
        margin: 5px 0 !important;
    }
    .current-price {
        font-size: 13px !important;
    }
    .old-price {
        font-size: 11px !important;
    }
    .btn-order-now {
        padding: 8px 10px !important;
        font-size: 12px !important;
        width: 100% !important;
        margin-top: 5px !important;
    }

    /* Homepage Category Icons: 3 Columns on Mobile */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px;
    }
    .category-card {
        padding: 10px !important;
        border-radius: 8px !important;
    }
    .category-card-icon {
        width: 100% !important;
        border-radius: 8px !important;
    }
    .category-card-name {
        font-size: 11px !important;
        margin-top: 5px !important;
    }

    /* Banner carousel slider on mobile */
    .hero-banner img {
        height: auto !important;
    }

    /* Footer: Stack Columns on Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
    }

    /* Product Single Detail Layout Mobile */
    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .product-detail-gallery {
        max-width: 100% !important;
    }
    .product-detail-img-wrapper img {
        max-height: 350px !important;
    }

    /* Cart checkout forms stacking */
    .cart-layout {
        grid-template-columns: 1fr !important;
    }
    .form-row-three-grid,
    .form-row-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* ====================================================
   HERO BANNER SLIDER & CAROUSEL
==================================================== */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 18px 0 25px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    background: #f8fafc;
}
.hero-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.hero-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}
.hero-carousel-slide a {
    display: block;
    width: 100%;
    text-decoration: none;
}
.hero-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    z-index: 10;
    opacity: 0;
}
.hero-carousel-wrapper:hover .hero-carousel-nav-btn {
    opacity: 1;
}
.hero-carousel-prev {
    left: 16px;
}
.hero-carousel-next {
    right: 16px;
}
.hero-carousel-nav-btn:hover {
    background: #ff5c00;
    color: #ffffff;
    border-color: #ff5c00;
    transform: translateY(-50%) scale(1.08);
}
.hero-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-carousel-dot.active {
    background: #ff5c00;
    width: 28px;
    border-radius: 10px;
    border-color: #ff5c00;
    box-shadow: 0 2px 8px rgba(255, 92, 0, 0.5);
}
@media (max-width: 768px) {
    .hero-carousel-wrapper {
        margin: 12px 0 18px 0;
        border-radius: 10px;
    }
    .hero-carousel-nav-btn {
        opacity: 0.85;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .hero-carousel-prev { left: 8px; }
    .hero-carousel-next { right: 8px; }
    .hero-carousel-dots { bottom: 8px; }
    .hero-carousel-dot { width: 7px; height: 7px; }
    .hero-carousel-dot.active { width: 18px; }
}
