* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ==========================================
   CATEGORY DROPDOWN STYLES
   ========================================== */
/* ========== SHOW MORE BUTTON ========== */
.show-more-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 10px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2c3e50 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.show-more-btn:hover {
    background: linear-gradient(135deg, var(--blue-accent) 0%, #1a5f9e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
    color: white;
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .show-more-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.category-parent {
    position: relative;
    list-style: none;
}

.category-parent a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #444;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-parent a:hover {
    color: #000;
}

.category-parent a.active {
    color: #000 !important;
    font-weight: 700;
}

.category-toggle {
    cursor: pointer;
    padding: 0 8px;
    color: #888;
    font-size: 11px;
    user-select: none;
}

.category-toggle:hover {
    color: #000;
}

.category-toggle i {
    transition: transform 0.2s ease;
}

.subcategory-list {
    list-style: none;
    padding-left: 15px;
    margin: 4px 0 6px 0;
    display: none;
}

.subcategory-list li {
    padding: 3px 0;
    border-bottom: none !important;
}

.subcategory-list li a {
    font-size: 13px;
    color: #777;
    padding: 3px 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.subcategory-list li a:hover,
.subcategory-list li a.active {
    color: #000 !important;
    font-weight: 600;
}

/* ========== COLORS ========== */
:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --gold-accent: #DAA520;
    --blue-accent: #1E90FF;
    --red-accent: #E74C3C;
    --text-light: #ffffff;
    --text-muted: #999999;
    --border-light: #333333;
}

/* ========== TOP BAR ========== */
.top-bar {
    background-color: #111;
    color: #fff;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.top-bar .top-bar-left strong {
    font-weight: 700;
}

.top-bar .top-bar-right a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.top-bar .top-bar-right a:hover {
    color: var(--gold-accent);
}

.top-bar .separator {
    color: #555;
    margin: 0 5px;
}

.top-bar-socials a {
    margin: 0 6px;
    font-size: 14px;
}

.top-bar-socials a:hover {
    color: var(--gold-accent);
}

/* ========== HEADER & NAVBAR ========== */
.navbar {
    background-color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    padding: 0.55rem 0;
    border-bottom-color: rgba(218, 165, 32, 0.25);
}

.navbar.scrolled .navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(218, 165, 32, 0.2));
}

.navbar.scrolled .nav-link {
    font-size: 13.5px;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg) !important;
    letter-spacing: -1px;
    font-style: italic;
    margin-right: 3rem;
}

.navbar-nav .nav-link {
    color: var(--dark-bg) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-actions a .fa-shopping-bag {
    font-size: 2rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--blue-accent) !important;
}

/* ========== DROPDOWN MENU STYLES ========== */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(30, 144, 255, 0.3);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 144, 255, 0.5);
}

.dropdown-item {
    padding: 12px 24px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    display: block;
    text-decoration: none;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.08) 0%, rgba(30, 144, 255, 0.02) 100%);
    color: var(--blue-accent);
    border-left-color: var(--blue-accent);
    padding-left: 30px;
}

.dropdown-item.active {
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.12) 0%, rgba(30, 144, 255, 0.05) 100%);
    color: var(--blue-accent);
    border-left-color: var(--blue-accent);
    font-weight: 600;
}

.dropdown-divider {
    margin: 10px 0;
    border-color: rgba(0, 0, 0, 0.06);
    border-style: dashed;
}

/* ========== NESTED DROPDOWN ========== */
.dropdown-submenu {
    position: relative;
}

/* Only submenu items get flex layout */
.dropdown-submenu > a.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Arrow icon inside submenu link */
.submenu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    color: var(--blue-accent);
    background: rgba(30, 144, 255, 0.1);
    transition: all 0.25s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.dropdown-submenu.active .submenu-arrow {
    transform: rotate(90deg);
    background: rgba(30, 144, 255, 0.2);
}

.dropdown-submenu-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 5px;
    min-width: 200px;
    display: none;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-submenu.active .dropdown-submenu-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* ========== HOVER DROPDOWN ========== */
.hover-dropdown {
    position: relative;
}

.hover-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin-top: 2px;
}

.hover-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hover-dropdown .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.hover-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--blue-accent);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 0 1rem;
    flex: 0 0 250px;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-bg);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-actions a,
.navbar-actions button {
    color: var(--dark-bg);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-actions a:hover,
.navbar-actions button:hover {
    color: var(--blue-accent);
}

.cart-icon {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--red-accent);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    transition: transform 0.2s ease;
    animation: none;
}

.navbar-actions a {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#cart-count[data-count="0"],
#cart-count:empty {
    display: none;
}

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.4);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

#cart-count.bounce {
    animation: cartBounce 0.4s ease;
}


@media (max-width: 991px) {
    .navbar-brand {
        font-size: 22px;
        margin-right: 1rem;
    }

    .search-box {
        flex: 1;
        margin: 0.5rem 0;
        max-width: 100%;
    }

    .navbar-nav {
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .search-box {
        display: none;
    }
}

/* ========== HERO SECTION & AUTO CAROUSEL ========== */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-carousel {
    width: 100%;
    position: relative;
}

.hero-carousel .carousel-inner {
    width: 100%;
}

.hero-carousel .carousel-item {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    transition: transform 1.2s ease-in-out, opacity 1s ease-in-out;
}

.hero {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel .carousel-indicators {
    bottom: 25px;
    margin-bottom: 0;
    gap: 8px;
    z-index: 5;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
    background-color: transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    width: 32px;
    border-radius: 10px;
    background-color: var(--gold-accent);
    opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    margin: 0 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 0.85;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--gold-accent);
    opacity: 1;
}

.hero-content {
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--text-light) 0%, var(--gold-accent) 50%, var(--blue-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .price {
    font-size: 24px;
    color: var(--gold-accent);
    margin-bottom: 30px;
    font-weight: 600;
}

.shop-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    background-color: transparent;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.shop-btn:hover {
    background-color: var(--gold-accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        min-height: 340px;
        height: 50vh;
        max-height: 420px;
        padding: 40px 15px;
        background-size: cover;
        background-position: center center;
    }

    .hero-carousel .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .hero-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .hero-carousel .carousel-indicators button.active {
        width: 22px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }

    .hero {
        padding: 40px 15px;
        min-height: 340px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .hero-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-content .price {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .shop-btn {
        padding: 9px 24px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero-carousel .carousel-item {
        min-height: 270px;
        height: 40vh;
        max-height: 320px;
        padding: 25px 12px;
    }

    .hero {
        min-height: 270px;
        padding: 25px 12px;
    }

    .hero-content h1 {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .hero-content h2 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .hero-content .price {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .shop-btn {
        padding: 7px 18px;
        font-size: 11px;
    }
}

/* ========== SECTION TITLE ========== */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
}

/* ========== HOME CATEGORIES (ROUND BUBBLES) ========== */
.home-categories-section {
    padding: 50px 20px 25px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.home-categories-container {
    margin-top: 35px;
}

.home-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    width: 135px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-cat-img-wrapper {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 7px;
    border: 3.5px solid #eaeaea;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
}

.home-cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.home-cat-name {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-bg, #1a1a1a);
    text-align: center;
    letter-spacing: 0.4px;
    transition: color 0.3s ease;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover effects */
.home-cat-card:hover {
    transform: translateY(-8px);
}

.home-cat-card:hover .home-cat-img-wrapper {
    border-color: var(--gold-accent, #DAA520);
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.4);
    background: #fffdf5;
}

.home-cat-card:hover .home-cat-img-wrapper img {
    transform: scale(1.12);
}

.home-cat-card:hover .home-cat-name {
    color: var(--gold-accent, #DAA520);
}

/* Responsive */
@media (max-width: 768px) {
    .home-categories-section {
        padding: 35px 15px 15px;
    }

    .home-categories-wrapper {
        gap: 25px;
    }

    .home-cat-card {
        width: 105px;
    }

    .home-cat-img-wrapper {
        width: 95px;
        height: 95px;
        padding: 5px;
        border-width: 3px;
    }

    .home-cat-name {
        font-size: 13px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .home-categories-wrapper {
        gap: 18px;
    }

    .home-cat-card {
        width: 90px;
    }

    .home-cat-img-wrapper {
        width: 82px;
        height: 82px;
        padding: 4px;
        border-width: 2.5px;
    }

    .home-cat-name {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* ========== PRODUCT GRID ========== */
.products-container {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--red-accent, #e74c3c);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-badge.sale-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    animation: salePulse 2.5s infinite ease-in-out;
}

@keyframes salePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    line-height: 1.4;
    flex: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}

.stars {
    color: var(--gold-accent);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .price-original {
    font-size: 13.5px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price .price-sale {
    font-size: 18.5px;
    font-weight: 800;
    color: #dc2626;
}

.product-detail-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.product-detail-price-box .detail-price-original {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.product-detail-price-box .detail-price-sale {
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
}

.product-detail-price-box .detail-save-pill {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--dark-bg);
}

.btn-icon:hover {
    background-color: var(--gold-accent);
    color: white;
    border-color: var(--gold-accent);
}

/* ========== SHOP PAGE LAYOUT ========== */
.shop-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 25px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list a:hover {
    color: #000;
    padding-left: 4px;
}

.category-list a.active {
    color: #000 !important;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-section {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .shop-sidebar {
        display: block;
    }

    .sidebar-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-content .tagline {
    font-size: 18px;
    color: var(--gold-accent);
    margin-bottom: 40px;
    font-weight: 600;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content .tagline {
        font-size: 16px;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-box {
    text-align: center;
}

.info-box-title {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-box-content {
    font-size: 15px;
    color: var(--dark-bg);
    font-weight: 500;
    line-height: 1.6;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--blue-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========== MODAL ========== */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.show {
    display: flex;
}

.modal-dialog {
    background: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-bg);
}

.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.modal-form-group input:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.modal-btn-submit:hover {
    background-color: var(--blue-accent);
}

.modal-link {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.modal-link a {
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-link a:hover {
    color: var(--dark-bg);
}

/* ========== FOOTER NEWSLETTER ========== */
.footer-newsletter {
    background: linear-gradient(135deg, #111 0%, #1a1a2e 50%, #111 100%);
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    padding: 35px 20px;
}

.footer-newsletter-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.footer-newsletter-icon {
    font-size: 32px;
    color: var(--gold-accent);
    flex-shrink: 0;
    animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }
}

.footer-newsletter-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.footer-newsletter-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    flex: 0 0 420px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-accent);
}

.footer-newsletter-btn {
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--gold-accent), #f0b800);
    color: var(--dark-bg);
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #f0b800, var(--blue-accent));
    color: white;
}

@media (max-width: 768px) {
    .footer-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-newsletter-form {
        flex: 1;
        width: 100%;
    }
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 20px 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social a:hover {
    background-color: var(--gold-accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .modal-dialog {
        margin: 20px;
    }
}

/* ========== LOADING SPINNER ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 150px;
    height: auto;
    animation: logoSpin 2s ease-in-out;
}

@keyframes logoSpin {
    0% {
        transform: scale(0.5) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(218, 165, 32, 0.2);
    border-top-color: var(--gold-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    position: absolute;
    margin-top: 100px;
    color: var(--gold-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold-accent);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--blue-accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.whatsapp-tooltip {
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    border-left: 3px solid #25D366;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    margin-bottom: 5px;
}

.whatsapp-tooltip span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 2px;
}

.whatsapp-tooltip small {
    font-size: 11px;
    color: var(--text-muted);
}

.whatsapp-float-wrapper:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ========== PRODUCT DETAIL SIZE SELECTION ========== */
.size-selection {
    margin: 20px 0;
}

.size-selection h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    background: white;
}

.size-option:hover {
    border-color: var(--blue-accent);
    background-color: rgba(30, 144, 255, 0.02);
}

.size-option input[type="radio"] {
    display: none;
}

.size-option span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
}

.size-option input[type="radio"]:checked+span {
    color: var(--blue-accent);
}

.size-option:has(input[type="radio"]:checked) {
    border-color: var(--blue-accent);
    background-color: rgba(30, 144, 255, 0.05);
}

.size-option input[type="radio"]:disabled+span {
    color: var(--text-muted);
    opacity: 0.6;
}

.size-option:has(input[type="radio"]:disabled) {
    border-color: #eee;
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-button:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23DAA520" opacity="0.05"/></svg>');
    background-size: 200px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 60px;
    color: var(--gold-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-accent), var(--blue-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-rating {
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-size: 18px;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-accent), var(--blue-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-accent);
}

.newsletter-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.newsletter-button {
    padding: 15px 30px;
    background-color: var(--gold-accent);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: var(--blue-accent);
    color: white;
}

/* ========== ENHANCED PRODUCT CARD ========== */
.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--red-accent), #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.product-actions {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--dark-bg);
}

.btn-icon:hover {
    background-color: var(--gold-accent);
    color: white;
    border-color: var(--gold-accent);
    transform: rotate(360deg);
}

/* ========== PARALLAX EFFECTS ========== */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ========== AOS ANIMATIONS OVERRIDES ========== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-detail-image {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.product-detail-info .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-detail-info .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 25px;
}

.product-detail-info .description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-actions-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions-group button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart {
    background-color: var(--blue-accent);
    color: white;
}

.btn-add-cart:hover {
    background-color: #0080ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.btn-wishlist {
    background-color: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
}

.btn-wishlist:hover {
    background-color: var(--gold-accent);
    color: var(--dark-bg);
}

@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-detail-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .product-detail-info h1 {
        font-size: 24px;
    }

    .product-detail-info .price {
        font-size: 24px;
    }

    .product-actions-group {
        flex-direction: column;
    }
}

/* ========== CART PAGE ========== */
.cart-container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty p {
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--blue-accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-continue-shopping:hover {
    background-color: #0080ff;
    transform: translateY(-2px);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cart-table thead {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2c3e50 100%);
    border-bottom: none;
}

.cart-table th {
    padding: 18px 15px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 25px 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    background: white;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-table tr:hover td {
    background: #fafafa;
}

.cart-item-image {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cart-item-image:hover {
    transform: scale(1.05);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.cart-item-name:hover {
    color: var(--blue-accent);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cart-item-quantity:hover {
    border-color: var(--blue-accent);
}

.cart-item-quantity button {
    background: #f8f9fa;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-bg);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.cart-item-quantity button i {
    pointer-events: none;
}

.cart-item-quantity button:hover {
    background: var(--blue-accent);
    color: white;
    transform: scale(1.1);
}

.cart-item-quantity button:active {
    transform: scale(0.95);
}

.cart-item-quantity input {
    width: 55px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    appearance: textfield;
    -moz-appearance: textfield;
    height: 40px;
}

.cart-item-quantity input::-webkit-outer-spin-button,
.cart-item-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-remove {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(238, 90, 90, 0.3);
}

.cart-item-remove:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e04848 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 90, 90, 0.4);
}

.cart-item-remove:active {
    transform: translateY(0);
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.summary-box {
    background: #f9f9f9;
    padding: 24px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
}

.cart-summary-row span:first-child {
    color: #555;
    font-weight: 400;
}

.cart-summary-row span:last-child {
    color: #222;
    font-weight: 600;
}

.cart-summary-row.total {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #222;
}

.cart-summary-row.total span:first-child {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.cart-summary-row.total span:last-child {
    font-size: 24px;
    color: var(--blue-accent);
    font-weight: 800;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--blue-accent) 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #0080ff 0%, #0052a3 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-checkout:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cart-table {
        font-size: 13px;
        border-radius: 8px;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .cart-table td {
        padding: 12px 0;
        border-bottom: none;
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .cart-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: var(--dark-bg);
        font-size: 13px;
    }

    .cart-table td:first-child {
        text-align: left;
        padding-left: 0;
    }

    .cart-table td:first-child::before {
        display: none;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-quantity {
        margin: 0 auto;
    }

    .cart-item-remove {
        width: 100%;
        margin-top: 10px;
    }

    .summary-box {
        width: 100%;
        max-width: none;
        padding: 25px;
        border-radius: 12px;
    }

    .cart-summary-row {
        font-size: 14px;
    }

    .cart-summary-row.total {
        font-size: 18px;
    }
}

/* ========== ENHANCED MOBILE RESPONSIVENESS (< 576px) ========== */
@media (max-width: 576px) {

    /* Navbar */
    .navbar {
        padding: 0.5rem 10px;
    }

    .navbar-brand {
        font-size: 20px;
        margin-right: 0;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .navbar-actions {
        gap: 15px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 15px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 16px;
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .shop-btn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
        display: inline-block;
    }

    /* Layout & Containers */
    .products-container,
    .contact-section,
    .about-section {
        padding: 30px 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    /* Grid adjustments */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 180px;
    }

    /* Contact Form & Modals */
    .contact-form {
        padding: 20px 15px;
    }

    .modal-dialog {
        padding: 25px 15px;
        margin: 10px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    /* Forms inputs & buttons */
    .form-group input,
    .form-group textarea,
    .modal-form-group input,
    .newsletter-input,
    .footer-newsletter-input {
        font-size: 16px;
        /* Prevents iOS auto-zoom */
        padding: 10px;
    }

    .btn-submit,
    .modal-btn-submit,
    .newsletter-button,
    .btn-checkout {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 8px;
    }

    .footer-newsletter-input {
        border-radius: 8px 8px 0 0;
        border-right: 1px solid rgba(218, 165, 32, 0.25);
        border-bottom: none;
    }

    .footer-newsletter-btn {
        border-radius: 0 0 8px 8px;
        width: 100%;
    }

    /* Tables (Cart, etc) */
    .cart-table thead {
        display: none;
        /* Hide table headers on mobile */
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        position: relative;
        padding-top: 15px;
    }

    .cart-table td {
        text-align: right;
        padding: 10px 15px;
        border-bottom: none;
    }

    .cart-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 12px;
        color: var(--text-muted);
    }

    .cart-item-image {
        display: inline-block;
        margin-bottom: 10px;
    }

    /* Footer */
    .footer-content {
        gap: 20px;
    }

    .footer-section h4 {
        margin-bottom: 12px;
    }

    .footer-bottom {
        padding-top: 15px;
    }
}

/* ========== CUSTOM ORDER PAGE STYLES ========== */
.custom-order-hero {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-order-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--text-light) 0%, var(--gold-accent) 50%, var(--blue-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-order-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.custom-order-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.custom-order-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--gold-accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-group input[type="color"] {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--blue-accent);
    background-color: rgba(30, 144, 255, 0.02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.file-upload-label i {
    font-size: 48px;
    color: var(--text-muted);
}

.file-upload-label span {
    font-size: 14px;
    color: var(--dark-bg);
    font-weight: 500;
}

.file-upload-label small {
    font-size: 12px;
    color: var(--text-muted);
}

.artwork-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.artwork-preview-item {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.artwork-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--blue-accent);
    background-color: rgba(30, 144, 255, 0.02);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--blue-accent);
}

.checkbox-item span {
    font-size: 14px;
    color: var(--dark-bg);
    font-weight: 500;
}

/* Size Matrix */
.size-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.size-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.size-row label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
    text-transform: uppercase;
}

.size-row input[type="number"] {
    width: 100%;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
}

.size-row input[type="number"]:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.total-quantity {
    text-align: right;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 16px;
}

.total-quantity span {
    color: var(--blue-accent);
    font-size: 20px;
    font-weight: 700;
}

/* Submit Button */
.btn-submit-custom {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--dark-bg), #2c3e50);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-custom:hover {
    background: linear-gradient(135deg, var(--blue-accent), #1a5f9e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.btn-submit-custom i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-order-hero {
        padding: 50px 20px;
    }

    .custom-order-hero-content h1 {
        font-size: 28px;
    }

    .custom-order-hero-content p {
        font-size: 14px;
    }

    .custom-order-wrapper {
        padding: 25px;
    }

    .form-section h3 {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .size-matrix {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   FLOATING CART BUTTON
   ========================================== */

.floating-cart {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--gold-accent, #d4af37);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
    z-index: 9990;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.floating-cart:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.65);
    background: #e6c34a;
    color: #000;
}

/* Count badge */
.floating-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    animation: badgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cart-count.visible {
    display: flex;
}

@keyframes badgePop {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.25); }
    100% { transform: scale(1); opacity: 1; }
}

/* Hide floating cart on cart page itself */
body.cart-page .floating-cart {
    display: none;
}