/* ==========================================================================
   Micky Ha Ha - Main Stylesheet
   Design: Cyan top bar, white body, dark footer
   ========================================================================== */

/* ---------- Font Imports ---------- */
@font-face {
    font-family: 'CooperHewitt';
    src: url('../fonts/CooperHewitt-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CooperHewitt';
    src: url('../fonts/CooperHewitt-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ---------- CSS Variables ---------- */
:root {
    --primary: #00afd6;
    --primary-dark: #0090b0;
    --primary-light: #b2ebf2;
    --dark: #333333;
    --dark-light: #555555;
    --gray: #999999;
    --light-gray: #f5f5f5;
    --border: #e0e0e0;
    --white: #ffffff;
    --red: #e53935;
    --green: #43a047;
    --orange: #ff9800;
    --font-body: 'CooperHewitt', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'CooperHewitt', 'Helvetica Neue', Arial, sans-serif;
    --font-logo: 'Permanent Marker', cursive;
    --max-width: 1100px;
    --header-height: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-light);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.4;
    text-transform: none;
    font-style: normal;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #333;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
}

h2 {
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    text-transform: none;
    font-style: normal;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}

ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-phone {
    text-align: left;
}

.top-bar-phone a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-phone a:hover {
    color: var(--white);
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-right a {
    color: var(--white);
    font-size: 14px;
    transition: opacity 0.2s;
}

.top-bar-right a:hover {
    color: var(--white);
    opacity: 0.8;
}

.cart-icon-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ---------- Header ---------- */
.main-header {
    background: var(--white);
    padding: 15px 0;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 24px;
    color: var(--dark);
    border: 3px solid var(--dark);
    padding: 6px 14px;
    display: inline-block;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-text:hover {
    color: var(--dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

/* ---------- Main Content ---------- */
.main-content {
    min-height: calc(100vh - 250px);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.page-section {
    padding: 50px 0;
}

.page-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Page Title ---------- */
.page-title {
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 40px;
    color: var(--dark);
    font-family: var(--font-heading);
}

/* ---------- Two Column Layout ---------- */
.two-col {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.two-col .col-text {
    flex: 1;
    min-width: 0;
}

.two-col .col-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.two-col .col-image img {
    width: 100%;
    border-radius: 4px;
}

/* ---------- Alerts / Flash Messages ---------- */
.alert {
    padding: 14px 20px;
    border-radius: 4px;
    margin: 20px auto;
    max-width: var(--max-width);
    font-size: 14px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.alert-info {
    background: #e1f5fe;
    color: #01579b;
    border: 1px solid #b3e5fc;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #444;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--dark);
    transition: border-color 0.2s;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-error {
    color: var(--red);
    font-size: 12px;
    margin-top: 4px;
}

.form-hint {
    color: var(--gray);
    font-size: 12px;
    margin-top: 4px;
}

/* ---------- Auth Forms (Login/Register) ---------- */
.auth-container {
    max-width: 460px;
    margin: 50px auto;
    padding: 0 20px;
}

.auth-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

.auth-box h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-links a {
    color: var(--primary);
}

/* ---------- Shop / Product Page ---------- */
.product-page {
    padding: 50px 0;
}

.product-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-gallery {
    flex: 0 0 50%;
    max-width: 50%;
}

.product-gallery img {
    width: 100%;
    border-radius: 6px;
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.8em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 25px;
}

.product-description p {
    color: var(--dark-light);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.qty-selector label {
    font-weight: 600;
    font-size: 14px;
}

.qty-selector input {
    width: 70px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
}

.qty-selector .qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-selector .qty-btn:hover {
    background: var(--border);
}

.product-warning {
    background: #fff3e0;
    border: 1px solid #ffe0b2;
    border-radius: 4px;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 13px;
    color: #e65100;
}

.product-warning i {
    margin-right: 6px;
}

.product-details-section {
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
    gap: 0;
}

.product-tabs button {
    padding: 12px 24px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    color: var(--gray);
}

.product-tabs button:hover,
.product-tabs button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ---------- Cart Page ---------- */
.cart-page {
    padding: 50px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid var(--border);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.cart-qty-input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
}

.cart-remove {
    color: var(--red);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    padding: 5px;
}

.cart-remove:hover {
    color: #b71c1c;
}

.cart-summary {
    max-width: 380px;
    margin-left: auto;
    background: var(--light-gray);
    border-radius: 6px;
    padding: 30px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.cart-summary-row.total {
    border-top: 2px solid var(--border);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 60px;
    color: var(--border);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 10px;
}

/* ---------- Checkout Page ---------- */
.checkout-page {
    padding: 50px 0;
}

.checkout-layout {
    display: flex;
    gap: 40px;
}

.checkout-form {
    flex: 1;
}

.checkout-sidebar {
    flex: 0 0 380px;
    max-width: 380px;
}

.checkout-order-summary {
    background: var(--light-gray);
    border-radius: 6px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.checkout-order-summary h3 {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.checkout-item:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.3em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Stripe Card Element */
#card-element {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.2s;
}

#card-element.StripeElement--focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

#card-errors {
    color: var(--red);
    font-size: 13px;
    margin-top: 8px;
}

/* ---------- Order Confirmation ---------- */
.order-confirmation {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.order-confirmation .checkmark {
    font-size: 60px;
    color: var(--green);
    margin-bottom: 20px;
}

/* ---------- Account Page ---------- */
.account-page {
    padding: 50px 0;
}

.account-layout {
    display: flex;
    gap: 40px;
}

.account-sidebar {
    flex: 0 0 220px;
}

.account-sidebar a {
    display: block;
    padding: 12px 16px;
    color: var(--dark);
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s;
}

.account-sidebar a:hover,
.account-sidebar a.active {
    background: var(--light-gray);
    color: var(--primary);
}

.account-content {
    flex: 1;
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid var(--border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
}

.orders-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending { background: #fff3e0; color: #e65100; }
.status-processing { background: #e3f2fd; color: #1565c0; }
.status-paid { background: #e8f5e9; color: #2e7d32; }
.status-shipped { background: #e1f5fe; color: #01579b; }
.status-delivered { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #ffebee; color: #c62828; }
.status-refunded { background: #f3e5f5; color: #6a1b9a; }

/* ---------- Retailers Page ---------- */
.retailers-section {
    padding: 50px 0;
}

.retailers-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.retailers-list {
    flex: 1;
}

.retailers-list h3 {
    font-size: 1em;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dark);
}

.retailers-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.retailers-list ul li {
    margin-bottom: 4px;
}

.retailers-list ul li a {
    color: var(--primary);
    font-size: 14px;
}

.retailers-promo {
    flex: 0 0 50%;
    max-width: 50%;
    background: var(--primary);
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
}

.retailers-promo img {
    max-width: 200px;
    margin-bottom: 15px;
}

.retailers-promo p {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

/* ---------- Contact Form ---------- */
.contact-section {
    padding: 50px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
}

.contact-form-col {
    flex: 1;
}

.contact-info-col {
    flex: 0 0 320px;
}

.contact-info-col h3 {
    margin-bottom: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-info-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

/* ---------- Home Page ---------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.8em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-section .btn {
    font-size: 16px;
    padding: 15px 36px;
}

.features-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--dark-light);
}

.home-product-section {
    padding: 60px 0;
}

.home-product-section .two-col {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Footer ---------- */
.main-footer {
    background: #000000;
    color: var(--white);
    padding: 20px 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer-inner p {
    font-size: 13px;
    margin: 0;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
    position: static;
}

.footer-social a {
    color: var(--white);
    font-size: 16px;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.7;
    color: var(--white);
}

/* ---------- Loading Spinner ---------- */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
}

.pagination a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-primary { color: var(--primary); }
.text-muted  { color: var(--gray); }
.text-small  { font-size: 13px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 1000;
        text-align: left;
    }

    .main-nav.open {
        display: flex;
        align-content: flex-start;
        align-items: flex-start;
    }    

    .main-nav a {
        padding: 10px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .main-header {
        position: relative;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    h1, .page-title { font-size: 1.8em; }
    h2 { font-size: 1.4em; }

    .two-col,
    .product-layout,
    .checkout-layout,
    .account-layout,
    .contact-layout,
    .retailers-layout {
        flex-direction: column;
    }

    .two-col .col-image,
    .product-gallery,
    .checkout-sidebar,
    .contact-info-col,
    .retailers-promo {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .account-sidebar {
        flex: 1 1 100%;
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: flex;
        flex-wrap: wrap;
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .cart-table td {
        border: none;
        padding: 5px 15px;
    }

    .cart-summary {
        max-width: 100%;
    }

    .top-bar-phone {
        font-size: 0;
    }

    .top-bar-phone a i {
        font-size: 14px;
    }

    .auth-box {
        padding: 25px;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cta {
        width: 100% !important;
        padding: 60px 20px !important;
        font-size: 18px !important;
        white-space: normal !important;
    }
}

@media (max-width: 480px) {
    .hero-slider { height: 300px; }

    .qty-selector {
        flex-wrap: wrap;
    }

    .home-cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }
}

/* ---------- Logo Image ---------- */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #fff;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.7);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.95); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active { background: var(--primary); }

/* ---------- Home CTA Section ---------- */
.home-cta-section {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.home-cta-title {
    font-family: var(--font-heading);
    font-size: 36px !important;
    color: var(--dark);
    margin-bottom: 15px;
    font-style: normal;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-subtitle {
    font-size: 30px !important;
    color: var(--dark);
    margin-bottom: 8px;
}

.home-cta-text {
    font-size: 24px !important;
    color: var(--dark);
    font-weight: bold;
    margin-bottom: 40px;
}

.home-cta-buttons {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    padding: 60px 50px;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    transition: background 0.3s;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}
.btn-cta:hover {
    background: var(--primary-dark);
}

/* ---------- Product Gallery Thumbnails ---------- */
.product-main-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnails .thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
}

.product-thumbnails .thumb:hover,
.product-thumbnails .thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .home-cta-title { font-size: 24px !important; }
    .home-cta-subtitle { font-size: 20px !important; }
    .home-cta-text { font-size: 16px !important; }
    .home-cta-buttons { gap: 12px; }
    .btn-cta { padding: 14px 35px; font-size: 13px; }
    .product-thumbnails .thumb { width: 55px; height: 55px; }
}

