/* ============================================================
   BOOMBAH CLON - Frontend Styles
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; background-color: #fff; color: #333; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Notice Bar --- */
.notice-bar {
    background-color: #f8f8f8; text-align: center; padding: 10px;
    font-family: 'Oswald', sans-serif; font-size: 15px; color: #333; border-bottom: 1px solid #ddd;
}
.notice-sub { font-size: 12px; color: #666; margin-left: 10px; }

/* --- Header --- */
.header {
    background-color: #0a1f3f; color: #fff; display: flex;
    justify-content: space-between; align-items: center; padding: 15px 5%;
}
.logo img { height: 40px; }
.header-icons { display: flex; gap: 20px; font-size: 14px; align-items: center; }
.header-icons a { color: #fff; transition: color 0.3s; white-space: nowrap; }
.header-icons a:hover { color: #aaa; }
.lang-switch a { font-weight: bold; margin: 0 2px; color: #888; }
.lang-switch a.active { color: #00afec; }

/* --- Navigation --- */
.navbar { background-color: #0d2b54; color: white; padding: 0 5%; }
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto;
}
.nav-list {
    display: flex; gap: 25px; font-family: 'Oswald', sans-serif;
    font-size: 15px; letter-spacing: 1px; padding: 15px 0;
}
.nav-list li a { transition: color 0.3s; }
.nav-list li a:hover { color: #00afec; }
.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }
.nav-search form { display: flex; }
.nav-search input {
    background: #0a1f3f; border: 1px solid #1a3f6f; color: #fff; padding: 8px 12px;
    font-size: 13px; width: 180px; outline: none; font-family: inherit;
}
.nav-search input:focus { border-color: #00afec; }
.nav-search button {
    background: #0a1f3f; border: 1px solid #1a3f6f; border-left: none; color: #aaa;
    padding: 8px 12px; cursor: pointer; transition: color 0.3s;
}
.nav-search button:hover { color: #fff; }

/* --- Dropdown Menu --- */
.nav-list li { position: relative; }
.nav-list .dropdown-toggle::after {
    content: '\f107'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
    font-size: 11px; margin-left: 5px; vertical-align: middle;
}
.dropdown-menu {
    display: none; position: absolute; top: 100%; left: -10px;
    background: #0d2b54; min-width: 200px; padding: 8px 0;
    border-radius: 0 0 4px 4px; z-index: 200; box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.nav-list li:hover .dropdown-menu { display: block; }
.dropdown-menu li { display: block; }
.dropdown-menu li a {
    display: block; padding: 10px 18px; color: #ccc; font-size: 13px;
    letter-spacing: 0.5px; transition: all 0.2s; white-space: nowrap;
}
.dropdown-menu li a:hover { background: #1a3f6f; color: #fff; }

/* --- Hero Slider --- */
.hero-slider {
    position: relative; width: 100%; overflow: hidden;
    background: #0a1f3f;
    aspect-ratio: 24 / 10;
    max-height: 500px;
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 0.8s ease-in-out; display: block;
}
.hero-slide.active { opacity: 1; position: relative; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-dots {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,0.4); transition: background 0.3s; padding: 0;
}
.hero-dot.active, .hero-dot:hover { background: #fff; }

/* Arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(0,0,0,0.3); color: #fff; border: none; cursor: pointer;
    width: 40px; height: 60px; font-size: 24px; display: flex; align-items: center; justify-content: center;
    transition: background 0.3s; opacity: 0;
}
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(0,0,0,0.6); }
.hero-arrow.prev { left: 0; border-radius: 0 4px 4px 0; }
.hero-arrow.next { right: 0; border-radius: 4px 0 0 4px; }

/* --- Info Bar --- */
.info-bar {
    display: flex; justify-content: center; gap: 50px;
    padding: 40px 20px; background-color: #fff; text-align: center;
}
.info-item h2 { font-size: 20px; font-family: 'Oswald', sans-serif; text-transform: uppercase; margin-bottom: 5px; }
.info-item p { font-size: 14px; color: #666; }

/* --- Section Titles --- */
.section-title {
    text-align: center; font-family: 'Oswald', sans-serif;
    font-size: 36px; text-transform: uppercase; margin: 50px 0 20px;
}

/* --- Featured Grid (homepage) --- */
.featured-items-section { margin-bottom: 60px; padding: 0 1%; }
.featured-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px); gap: 10px;
}
.featured-item { position: relative; overflow: hidden; display: block; background-color: #0a1f3f; }
.featured-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s ease; opacity: 0.9;
}
.featured-item:hover img { transform: scale(1.05); opacity: 0.7; }
.item-bat-bags { grid-column: 1/2; grid-row: 1/3; }
.item-baseball { grid-column: 2/3; grid-row: 1/3; }
.item-softball { grid-column: 3/5; grid-row: 1/2; }
.item-footwear { grid-column: 3/5; grid-row: 2/3; }

.feat-overlay { position: absolute; color: #fff; z-index: 2; }
.feat-overlay.top-left { top: 20px; left: 20px; }
.feat-overlay.top-right { top: 20px; right: 20px; text-align: right; }
.feat-overlay span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.feat-overlay h3 { font-family: 'Oswald', sans-serif; font-size: 24px; text-transform: uppercase; line-height: 1; margin-bottom: 5px; }
.feat-overlay p { font-size: 10px; font-weight: bold; text-transform: uppercase; }

/* --- Grid Container (teams, players) --- */
.grid-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px; padding: 0 5%; margin-bottom: 60px;
}
.grid-item { position: relative; overflow: hidden; background: #0a1f3f; aspect-ratio: 1/0.7; }
.grid-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease; opacity: 0.8;
}
.grid-item:hover img { transform: scale(1.05); opacity: 0.6; }
.grid-overlay { position: absolute; bottom: 20px; left: 20px; color: #fff; z-index: 2; }
.grid-overlay.top-left { bottom: auto; top: 20px; }
.grid-overlay.top-right { bottom: auto; top: 20px; left: auto; right: 20px; text-align: right; }
.grid-overlay span { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.grid-overlay h3 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; line-height: 1.1; margin-bottom: 10px; }
.grid-overlay p { font-size: 14px; font-weight: bold; }

/* --- Product Grid (catalog) --- */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; padding: 0 5%; margin-bottom: 40px;
}
.product-card {
    border: 1px solid #eee; border-radius: 4px; overflow: hidden;
    transition: box-shadow 0.3s; background: #fff;
}
.product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.product-img { position: relative; overflow: hidden; aspect-ratio: 1; background: #f5f5f5; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.sale-badge {
    position: absolute; top: 10px; right: 10px; background: #e00; color: #fff;
    padding: 4px 10px; font-size: 12px; font-weight: bold; text-transform: uppercase; border-radius: 2px;
}
.product-info { padding: 15px; }
.product-info h3 { font-size: 16px; margin-bottom: 8px; font-weight: 500; }
.product-price { display: flex; gap: 10px; align-items: center; }
.price-original { text-decoration: line-through; color: #999; font-size: 14px; }
.price-sale { color: #e00; font-weight: bold; font-size: 18px; }
.price-current { font-weight: bold; font-size: 18px; color: #333; }

/* --- Product Detail --- */
.product-detail {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    padding: 40px 5%; max-width: 1200px; margin: 0 auto;
}
.product-detail-images .main-image { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid #eee; border-radius: 4px; }
.product-detail-info h1 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 10px; }
.product-detail-info .price { font-size: 28px; font-weight: bold; margin: 15px 0; }
.product-detail-info .price.sale { color: #e00; }
.product-detail-info .description { color: #666; margin-bottom: 20px; line-height: 1.6; }
.variant-selector { margin-bottom: 15px; }
.variant-selector label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 14px; }
.variant-selector select {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit;
}
.btn-add-cart {
    display: inline-block; background: #00afec; color: #fff; border: none;
    padding: 14px 40px; font-size: 16px; font-weight: bold; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s; font-family: 'Oswald', sans-serif; letter-spacing: 1px;
}
.btn-add-cart:hover { background: #0099cc; }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }
.stock-status { font-size: 14px; margin: 10px 0; }
.stock-status.in-stock { color: #0a0; }
.stock-status.out-of-stock { color: #e00; }

/* --- Cart --- */
.cart-page { padding: 40px 5%; max-width: 1000px; margin: 0 auto; }
.cart-page h1 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 30px; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.cart-table th {
    text-align: left; padding: 12px; border-bottom: 2px solid #333;
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 14px;
}
.cart-table td { padding: 15px 12px; border-bottom: 1px solid #eee; vertical-align: middle; }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-qty input { width: 60px; padding: 6px; text-align: center; border: 1px solid #ddd; border-radius: 4px; }
.cart-remove { color: #e00; cursor: pointer; background: none; border: none; font-size: 18px; }
.cart-summary { text-align: right; }
.cart-total { font-size: 24px; font-weight: bold; margin-bottom: 20px; }
.btn-checkout {
    display: inline-block; background: #00afec; color: #fff; padding: 14px 40px;
    font-size: 16px; font-weight: bold; text-transform: uppercase; transition: background 0.3s;
    font-family: 'Oswald', sans-serif; letter-spacing: 1px;
}
.btn-checkout:hover { background: #0099cc; }
.cart-empty { text-align: center; padding: 60px 20px; font-size: 18px; color: #666; }

/* --- Checkout --- */
.checkout-page { padding: 40px 5%; max-width: 800px; margin: 0 auto; }
.checkout-page h1 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 30px; }
.checkout-form .form-group { margin-bottom: 20px; }
.checkout-form label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 14px; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit;
}
.checkout-form textarea { resize: vertical; min-height: 80px; }
/* --- Payment Page --- */
.payment-summary { background:#f9f9f9; padding:20px; border-radius:8px; margin-bottom:25px; }
.payment-totals { text-align:right; line-height:2; font-size:14px; }
.payment-totals .total { font-size:22px; font-weight:bold; }

.payment-methods { display:flex; flex-direction:column; gap:10px; margin-bottom:25px; }
.payment-method-card {
    display:flex; align-items:center; gap:15px; padding:18px 20px; border:2px solid #eee; border-radius:10px;
    cursor:pointer; transition:all 0.2s; background:#fff;
}
.payment-method-card:hover { border-color:#ccc; background:#fafafa; }
.payment-method-card input[type="radio"] { display:none; }
.payment-method-card:has(input:checked) { border-color:#00afec; background:#f0faff; box-shadow:0 0 0 3px rgba(0,175,236,0.1); }
.pm-icon { width:48px; height:48px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.pm-icon .fa-paypal { color:#003087; } .pm-icon .fa-credit-card { color:#1a5276; } .pm-icon .fa-university { color:#27ae60; }
.pm-body strong { display:block; font-size:15px; margin-bottom:2px; }
.pm-body span { font-size:13px; color:#888; }

.payment-detail { display:none; }
.payment-detail.active { display:block; }
.payment-note { text-align:center; padding:20px; color:#888; background:#fff3cd; border-radius:8px; }

/* Card Preview */
.card-preview { margin-bottom:20px; }
.card-display {
    max-width:400px; margin:0 auto; background:linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); border-radius:14px;
    padding:25px; color:#fff; position:relative; box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.card-chip { font-size:28px; margin-bottom:20px; color:#ffd700; }
.card-number-display { font-family:monospace; font-size:20px; letter-spacing:3px; margin-bottom:20px; }
.card-bottom { display:flex; justify-content:space-between; }
.card-bottom small { font-size:10px; text-transform:uppercase; opacity:0.7; }
.card-bottom div { font-size:14px; text-transform:uppercase; }
.card-brand { position:absolute; bottom:20px; right:25px; font-size:36px; opacity:0.5; }

.card-form { background:#fff; padding:25px; border-radius:10px; border:1px solid #eee; }
.card-fields { display:flex; flex-direction:column; gap:15px; }
.cf-row { display:flex; gap:12px; }
.cf-row.full { flex-direction:column; }
.cf-row.half > div { flex:1; display:flex; flex-direction:column; }
.cf-row label { display:flex; align-items:center; gap:6px; font-weight:600; font-size:13px; color:#444; margin-bottom:5px; }
.cf-row label i { color:#00afec; width:16px; text-align:center; }
.cf-row input {
    padding:12px 14px; border:2px solid #e0e0e0; border-radius:8px; font-size:15px;
    transition:border-color 0.2s; font-family:inherit; width:100%; box-sizing:border-box;
}
.cf-row input:focus { border-color:#00afec; outline:none; box-shadow:0 0 0 3px rgba(0,175,236,0.1); }
.cf-row input::placeholder { color:#bbb; }
.cf-row small { font-size:11px; color:#999; margin-top:3px; display:block; }
.cf-secure {
    display:flex; align-items:center; gap:8px; padding:10px 14px; background:#f0fdf4;
    border:1px solid #bbf7d0; border-radius:8px; font-size:12px; color:#166534;
}
.cf-secure i { color:#22c55e; font-size:16px; }
.transfer-instructions { background:#f0fdf4; padding:18px; border-radius:8px; white-space:pre-line; font-size:14px; line-height:1.6; border:1px solid #bbf7d0; }

/* --- Old button styles --- */
.btn-submit {
    display: inline-block; background: #00afec; color: #fff; border: none;
    padding: 14px 40px; font-size: 16px; font-weight: bold; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s; font-family: 'Oswald', sans-serif; letter-spacing: 1px;
}
.btn-submit:hover { background: #0099cc; }

/* --- Auth Pages --- */
.auth-page { padding: 60px 20px; max-width: 450px; margin: 0 auto; }
.auth-page h1 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 30px; text-align: center; }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 14px; }
.auth-form input {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit;
}
.auth-form button {
    width: 100%; padding: 14px; background: #00afec; color: #fff; border: none;
    font-size: 16px; font-weight: bold; cursor: pointer; font-family: 'Oswald', sans-serif;
    text-transform: uppercase; letter-spacing: 1px; transition: background 0.3s;
}
.auth-form button:hover { background: #0099cc; }
.auth-links { text-align: center; margin-top: 20px; font-size: 14px; }
.auth-links a { color: #00afec; }

/* --- Account Pages --- */
.account-page { padding: 40px 5%; max-width: 1000px; margin: 0 auto; }
.account-page h1 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 30px; }
.account-nav { display: flex; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid #ddd; }
.account-nav a {
    padding: 10px 20px; font-weight: bold; color: #666; border-bottom: 3px solid transparent; transition: all 0.3s;
}
.account-nav a.active, .account-nav a:hover { color: #00afec; border-bottom-color: #00afec; }
.order-table { width: 100%; border-collapse: collapse; }
.order-table th {
    text-align: left; padding: 12px; border-bottom: 2px solid #333;
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 14px;
}
.order-table td { padding: 12px; border-bottom: 1px solid #eee; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 10px; margin: 30px 0; }
.pagination a, .pagination span {
    padding: 8px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; transition: all 0.3s;
}
.pagination a:hover { background: #f5f5f5; }
.pagination .active { background: #00afec; color: #fff; border-color: #00afec; }

/* --- Filters Sidebar --- */
.catalog-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding: 30px 5%; max-width: 1400px; margin: 0 auto; }
.filter-sidebar { background: #f9f9f9; padding: 20px; border-radius: 4px; align-self: start; }
.filter-sidebar h3 { font-family: 'Oswald', sans-serif; font-size: 18px; text-transform: uppercase; margin-bottom: 15px; }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 13px; }
.filter-group select, .filter-group input { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; font-size: 13px; font-family: inherit; }

/* --- Static Pages --- */
.static-page { padding: 40px 5%; max-width: 800px; margin: 0 auto; }
.static-page h2 { font-family: 'Oswald', sans-serif; font-size: 28px; margin-bottom: 20px; text-transform: uppercase; }
.static-page p { margin-bottom: 15px; line-height: 1.7; color: #444; }

/* --- Alerts --- */
.alert { padding: 15px 20px; margin: 10px 5%; border-radius: 4px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* --- Footer --- */
.footer {
    background-color: #0f1a2e; color: #b6b6b6; padding: 50px 5%;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px; font-size: 14px;
}
.footer-col h5 { font-family: 'Oswald', sans-serif; color: #fff; font-size: 18px; margin-bottom: 15px; text-transform: uppercase; font-weight: 500; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.help-code-btn {
    background: transparent; border: 1px solid #fff; color: #fff;
    padding: 10px 20px; font-size: 14px; margin: 15px 0 25px 0;
    cursor: pointer; transition: background 0.3s; width: 80%; text-align: left; font-family: inherit;
}
.help-code-btn:hover { background: #1a2a4e; }
.mailing-list label { display: block; color: #fff; font-weight: bold; margin-bottom: 10px; font-size: 14px; }
.mailing-form { display: flex; width: 80%; }
.mailing-form input {
    flex: 1; padding: 8px 12px; background: #0a1a2e;
    border: 1px solid #888; color: #b6b6b6; outline: none; font-family: inherit;
}
.mailing-form button {
    background: #0a1a2e; border: 1px solid #888; border-left: none;
    color: #888; padding: 0 15px; cursor: pointer; transition: all 0.3s;
}
.mailing-form button:hover { background: #1a2a4e; color: #fff; }
.payment-img { max-width: 180px; margin-top: 5px; }

.footer-bottom {
    background-color: #0f1a2e; color: #888; padding: 20px 5%;
    font-size: 12px; display: flex; justify-content: space-between;
    align-items: center; border-top: 1px dashed #333; flex-wrap: wrap; gap: 20px;
}
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    display: inline-flex; justify-content: center; align-items: center;
    width: 35px; height: 35px; border: 1px solid #888; color: #888;
    font-size: 14px; transition: all 0.3s;
}
.social-icons a:hover { border-color: #fff; color: #fff; }

/* --- Category Banner --- */
.category-banner { max-height: 350px; overflow: hidden; }
.category-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .category-banner { max-height: 200px; } }

/* --- Breadcrumbs --- */
.breadcrumbs { padding: 15px 5%; font-size: 13px; color: #666; }
.breadcrumbs a { color: #333; }
.breadcrumbs a:hover { color: #00afec; }
.breadcrumbs span { margin: 0 5px; }

/* --- Customizer --- */
.customizer-page { padding: 40px 5%; max-width: 1200px; margin: 0 auto; }
.customizer-page h1 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 30px; }
.customizer-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; }
.customizer-preview { background: #f5f5f5; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.main-preview-img { width: 100%; max-height: 500px; object-fit: contain; background: #fff; border-radius: 8px; }
.preview-jersey { width: 300px; height: 380px; position: relative; }

/* Template grid */
.template-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
.template-thumb { cursor: pointer; border: 2px solid #eee; border-radius: 6px; overflow: hidden; transition: all 0.2s; text-align: center; }
.template-thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.template-thumb span { display: block; padding: 4px 6px; font-size: 10px; color: #666; background: #fafafa; }
.template-thumb.active { border-color: #00afec; box-shadow: 0 0 0 2px rgba(0,175,236,0.3); }
.template-thumb:hover { border-color: #00afec; }

/* Angle buttons */
.angle-btn { padding: 6px 14px; border: 1px solid #ddd; border-radius: 4px; background: #fff; cursor: pointer; font-size: 12px; font-weight: 600; transition: all 0.2s; }
.angle-btn.active { background: #00afec; color: #fff; border-color: #00afec; }

/* Volume pricing */
.volume-pricing { margin-top: 20px; padding: 15px; background: #f9f9f9; border-radius: 8px; }
.volume-pricing h4 { font-size: 14px; margin-bottom: 10px; }
.pricing-tiers { display: flex; gap: 8px; }
.tier { flex: 1; text-align: center; padding: 8px; background: #fff; border-radius: 4px; border: 1px solid #eee; }
.tier span { display: block; font-size: 11px; color: #888; margin-bottom: 3px; }
.tier strong { font-size: 15px; color: #e00; }
.preview-jersey .jersey-body { width: 100%; height: 100%; border-radius: 180px 180px 0 0; transition: background-color 0.3s; }
.preview-jersey .jersey-sleeve-left { position: absolute; left: -40px; top: 20px; width: 80px; height: 120px; border-radius: 40px 0 0 40px; transition: background-color 0.3s; }
.preview-jersey .jersey-sleeve-right { position: absolute; right: -40px; top: 20px; width: 80px; height: 120px; border-radius: 0 40px 40px 0; transition: background-color 0.3s; }
.preview-text { position: absolute; top: 40px; left: 0; right: 0; text-align: center; font-family: 'Oswald', sans-serif; font-size: 28px; color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.preview-number { position: absolute; top: 120px; left: 0; right: 0; text-align: center; font-family: 'Oswald', sans-serif; font-size: 72px; color: #fff; text-shadow: 2px 2px 6px rgba(0,0,0,0.5); }

.customizer-controls { display: flex; flex-direction: column; gap: 20px; }
.control-group label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 14px; }
.color-palette { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: border-color 0.2s;
}
.color-swatch.selected { border-color: #333; }
.control-group input[type="text"], .control-group input[type="number"] {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit;
}

/* --- Category Sections (stacked) --- */
.category-section { padding: 20px 0 50px; border-bottom: 1px solid #eee; }
.category-section:last-child { border-bottom: none; }
.section-header { text-align: center; padding: 30px 5% 20px; }
.section-header h2 { font-family: 'Oswald', sans-serif; font-size: 32px; text-transform: uppercase; margin-bottom: 10px; }
.section-header p { color: #888; font-size: 16px; }

/* --- Designs Grid --- */
.design-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 20px 5% 40px; }
.design-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s; background: #fff; }
.design-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.design-img { position: relative; aspect-ratio: 4/3; background: #f5f5f5; overflow: hidden; }
.design-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.design-card:hover .design-img img { transform: scale(1.05); }
.design-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 48px; color: #ddd; }
.design-badge { position: absolute; top: 10px; right: 10px; background: #0d2b54; color: #fff; padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: 4px; text-transform: uppercase; }
.design-info { padding: 15px; }
.design-info h3 { font-size: 16px; margin-bottom: 8px; font-weight: 600; }
.design-price { color: #e00; font-weight: bold; font-size: 18px; margin-bottom: 12px; }
.design-actions { display: flex; gap: 6px; margin-top: 12px; }
.design-actions .btn-design { flex: 1; text-align: center; background: #00afec; color: #fff; padding: 8px 6px; border-radius: 4px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; transition: background 0.3s; }
.design-actions .btn-design:hover { background: #0099cc; }
.btn-design-youth { background: #0d2b54 !important; }
.btn-design-youth:hover { background: #1a3f6f !important; }

/* --- Info Section (Custom Difference) --- */
.info-section { padding: 40px 5%; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.info-block { padding: 30px 20px; }
.info-block i { font-size: 36px; color: #00afec; margin-bottom: 15px; }
.info-block h4 { font-family: 'Oswald', sans-serif; font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.info-block p { color: #888; font-size: 14px; line-height: 1.5; }

/* --- Responsive --- */
@media (max-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .info-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .item-bat-bags, .item-baseball, .item-softball, .item-footwear { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; }
    .product-detail { grid-template-columns: 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .filter-sidebar { order: -1; }
    .customizer-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-slider { aspect-ratio: 16/9; max-height: none; }
    .featured-grid { grid-template-columns: 1fr; }
    .nav-list { display: none; flex-direction: column; position: absolute; top: 120px; left: 0; right: 0; background: #0d2b54; padding: 20px; z-index: 100; }
    .nav-list.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .dropdown-menu { position: static; box-shadow: none; padding-left: 15px; min-width: auto; }
    .dropdown-menu li a { font-size: 12px; padding: 8px 10px; }
    .nav-search input { width: 130px; }
    .info-bar { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    .help-code-btn, .mailing-form { width: 100%; }
    .header { flex-wrap: wrap; gap: 10px; }
    .header-icons { gap: 10px; font-size: 12px; }
    .cart-table { font-size: 13px; }
    .cart-table th:nth-child(1), .cart-table td:nth-child(1) { display: none; }
}
