/* ========================================
   GLOBAL STYLES & CSS VARIABLES
   ======================================== */

:root {
    --primary-blue: #2576E6;
    --primary-blue-light: #1E88E5;
    --primary-yellow: #FFD700;
    --primary-yellow-dark: #FFA500;
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
    --border-gray: #E5E7EB;
    --text-dark: #111827;
    --text-light: #6B7280;
    --success: #10B981;
    --danger: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   CONTAINER & UTILITIES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin: 24px auto 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.policy-content h1 {
    margin-bottom: 20px;
    font-size: 2.4rem;
    color: #111827;
    text-align: center;
}

.policy-content p,
.policy-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 22px;
}

.about-hero-section {
    margin-bottom: 24px;
}

.about-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 16px;
        margin: 18px auto 30px;
    }

    .policy-content h1 {
        font-size: 1.9rem;
    }
}

.hidden {
    display: none !important;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: var(--primary-blue);
    border: none;
    padding: 8px 0;
    z-index: 100;
    min-height: 95px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .header {
        min-height: 85px;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 80px;
    }
}

.header.sticky-header {
    position: sticky;
    top: 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 95px;
}

@media (max-width: 768px) {
    .header-container {
        height: 85px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 80px;
        gap: 10px;
    }
}

.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
    box-shadow: none;
    background: transparent;
}

@media (max-width: 768px) {
    .logo-image {
        width: 70px;
        height: 70px;
    }
}

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

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
}

.header-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
    order: 2;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 95px;
}

@media (max-width: 768px) {
    .nav-link {
        height: 85px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        height: 80px;
        font-size: 12px;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    order: 3;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-yellow);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.menu-toggle {
    display: none !important;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.header.menu-open {
    background: rgba(37, 118, 230, 0.95) !important;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--primary-blue);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 95px;
    left: -100% !important;
    width: 75%;
    max-width: 300px;
    height: calc(100vh - 95px);
    z-index: 99;
    transition: left 0.3s ease;
    padding-top: 0;
    overflow-y: auto;
}

.mobile-menu:not(.hidden) {
    left: 0 !important;
}

.mobile-menu.hidden {
    left: -100% !important;
}

.mobile-nav-link {
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: block;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-yellow);
    padding-left: 24px;
}

/* Header icon styling */
.header-icons .icon-btn svg {
    color: white;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover {
    background: var(--border-gray);
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
}

/* ========================================
   PRODUCT CARD REFINEMENT
   ======================================== */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover .product-title {
    color: #1a56d8;
}

.product-card-link:hover .product-price {
    color: #1a5bb8;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
    line-height: 1.35;
    text-decoration: none;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1B4ED8;
    margin-bottom: 8px;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-stars {
    display: inline-flex;
    line-height: 1;
}

.product-stars .star,
.review-rating-stars .star,
.seller-stars .star,
.rating-stars .star {
    display: inline-block;
    line-height: 1;
    color: #d1d5db;
}

.product-stars .star.filled,
.review-rating-stars .star.filled,
.seller-stars .star.filled,
.rating-stars .star.filled {
    color: #f59e0b;
}

.product-stars .star.half,
.review-rating-stars .star.half,
.seller-stars .star.half,
.rating-stars .star.half {
    color: transparent;
    background: linear-gradient(90deg, #f59e0b 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    background-clip: text;
}

.product-stars .star.empty,
.review-rating-stars .star.empty,
.seller-stars .star.empty,
.rating-stars .star.empty {
    color: #d1d5db;
}

.product-review-count {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 11px;
    color: #475569;
    white-space: nowrap;
}

.product-urgency {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 600;
    color: #b91c1c;
    margin-top: 4px;
}

.product-tagline {
    display: none;
}

.product-discount {
    font-size: 13px;
    font-weight: 700;
    margin-left: 6px;
}

.product-price-original {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 13px;
}

.product-info {
    padding: 18px;
}

.product-card {
    border: 1px solid #ebf0ff;
    box-shadow: 0 8px 20px rgba(36, 74, 138, 0.08);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(36, 74, 138, 0.15);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.product-urgency {
    font-size: 12px;
    font-weight: 600;
    color: #b91c1c;
    margin-top: 4px;
}

.product-tagline {
    font-size: 12px;
    color: #475569;
    margin: 6px 0 0;
    line-height: 1.3;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-gray);
    color: #e5e7eb;
    margin-top: 30px;
    padding: 40px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-office {
    margin-top: 8px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid #374151;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.follow-us-text {
    margin: 0;
    font-size: 14px;
    color: #f3f4f6;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.product-card-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.product-qty-input {
    width: 70px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: #1f2937;
    background: #f8fafc;
}

.btn-add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #2576E6 0%, #5B8DFE 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    padding: 10px 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 118, 230, 0.35);
}

.cart-update-flash {
    animation: pulseCartBadge 0.4s ease-in-out;
}

@keyframes pulseCartBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-yellow);
    color: var(--dark-gray);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    font-size: 32px;
    text-decoration: none;
    z-index: 999;
}

.whatsapp-button {
    animation: whatsapp-pulse 2.4s infinite ease-in-out;
}

.whatsapp-button i,
.whatsapp-button svg {
    width: 1em;
    height: 1em;
    display: block;
    line-height: 1;
}

.whatsapp-button:hover {
    background: #1fb855;
    transform: scale(1.14);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.03); }
}

/* ========================================
   CART MODAL
   ======================================== */

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.cart-modal.hidden {
    display: none;
}

.cart-modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
}

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

.cart-modal-header h2 {
    margin: 0;
    font-size: 20px;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #475569;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

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

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-price {
    color: #2576E6;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cart-item-remove {
    color: #ef4444;
    cursor: pointer;
    font-size: 20px;
    border: none;
    background: transparent;
    font-weight: 700;
    padding: 4px;
}

.cart-modal-footer {
    padding: 14px 20px;
    border-top: 1px solid #e2e8f0;
}

.cart-toast {
    position: fixed;
    bottom: 110px;
    right: 20px;
    background: rgba(37, 118, 230, 0.95);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

#cart-buy-now {
    background: #25D366;
    border: none;
}

#cart-buy-now:hover {
    background: #1fb855;
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    padding: 16px 20px;
    font-size: 14px;
    background: var(--light-gray);
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--text-light);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-container {
        padding: 0 16px;
        height: 85px;
        position: relative;
    }

    .header {
        min-height: 85px;
    }

    .header-logo {
        flex: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
        display: flex;
        align-items: center;
    }

    .logo-image {
        width: 70px;
        height: 70px;
    }

    .header-icons {
        display: flex;
        gap: 8px;
        order: 3;
        margin-left: auto;
        align-items: center;
    }

    .menu-toggle {
        display: flex !important;
    }

    .header-icons .search-btn {
        display: flex;
    }

    .header-icons .cart-btn {
        display: flex;
    }

    .mobile-menu:not(.hidden) {
        left: 0;
    }

    .nav-link {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        flex: 1;
    }

    .logo-text {
        font-size: 18px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
    }

    .container {
        padding: 0 12px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 20px;
    }
}
/* SHOPIFY-STYLE OFFER TEXT */
/* ===== SHOPIFY ANNOUNCEMENT BAR ===== */
.announcement-bar {
  width: 100%;
  background: #FFD700;
  border: none;
  text-align: center;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.announce-text {
  background: none;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 1;
  display: inline-block;
  padding: 0;
}

.announce-text:hover {
  color: #000000;
  opacity: 0.8;
}

.announce-arrow {
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  user-select: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
  user-select: none;
  transition: color 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announce-arrow:hover {
  color: #000;
}

.announce-arrow.left {
  order: -1;
}

.announce-arrow.right {
  order: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 6px 0;
    gap: 8px;
  }

  .announce-text {
    font-size: 12px;
    padding: 0;
  }

  .announce-arrow {
    font-size: 18px;
  }

  .announce-arrow.left {
    margin-left: 4px;
  }

  .announce-arrow.right {
    margin-right: 4px;
  }
}

/* ========================================
   BOTTOM MOBILE NAVIGATION BAR
   ======================================== */

.bottom-nav-bar {
    display: none;
    position: fixed;
    bottom: 8px;
    left: 0;
    right: 0;
    transform: none;
    margin: 0 auto;
    width: min(calc(100% - 18px), 440px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(37, 118, 230, 0.12);
    border-radius: 24px;
    z-index: 100;
    height: 70px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(16px);
}

.bottom-nav-container {
    display: flex;
    justify-content: stretch;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 0;
    padding: 6px;
    overflow: hidden;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    flex: 1 1 25%;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 18px;
    font: inherit;
    min-width: 25%;
    max-width: 25%;
    appearance: none;
    -webkit-appearance: none;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--primary-blue);
    background: rgba(37, 118, 230, 0.08);
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
}

.bottom-nav-label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.bottom-nav-item-primary {
    background: linear-gradient(135deg, #2576E6, #4c98ff);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 118, 230, 0.28);
}

.bottom-nav-item-primary:hover,
.bottom-nav-item-primary.active {
    color: #ffffff;
    background: linear-gradient(135deg, #1f66ca, #408af0);
}

.bottom-nav-cart-trigger {
    cursor: pointer;
}

/* Show bottom nav on mobile */
@media (max-width: 768px) {
    .bottom-nav-bar {
        display: flex;
    }

    body {
        padding-bottom: 92px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 95px;
    }
}

@media (max-width: 420px) {
    .bottom-nav-bar {
        width: calc(100% - 14px);
        border-radius: 22px;
    }

    .bottom-nav-container {
        gap: 0;
        padding: 6px 4px;
    }

    .bottom-nav-item {
        padding: 9px 2px;
    }

    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
    }

    .bottom-nav-label {
        font-size: 10px;
    }
}

/* ========================================
   POLICY PAGES STYLES
   ======================================== */

.policy-container {
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-section ul,
.policy-section ol {
    color: var(--text-light);
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-section li {
    margin-bottom: 10px;
}

.policy-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-container {
        padding: 40px 16px;
    }

    .policy-content h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .policy-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .policy-section p,
    .policy-section ul,
    .policy-section ol {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

