/* Global variables are now managed in variables.css */

body {
  font-family: var(--font-main);
}

h1, h2, h3, h4, .navbar-brand {
    font-family: var(--font-display);
}

.futuristic-bg {
  background-color: var(--color-bg) !important;
  background-image: radial-gradient(circle at top right, rgba(var(--color-secondary-rgb), 0.15) 0%, transparent 40%),
                    radial-gradient(circle at bottom left, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 40%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--color-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.glass-navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

/* Neon Text */
.text-neon-primary {
  color: var(--color-primary) !important;
  text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.6);
}

.text-neon-secondary {
  color: var(--color-secondary) !important;
  text-shadow: 0 0 8px rgba(var(--color-secondary-rgb), 0.6);
}

/* Futuristic Bootstrap Overrides */
.card.neon-card {
    background: var(--color-surface);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--color-primary-rgb), 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card.neon-card:hover {
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.2), 0 0 40px rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.btn-neon {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.2) inset;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-neon:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.6);
}

.text-neon-accent {
  color: var(--color-accent) !important;
  text-shadow: 0 0 8px rgba(var(--color-accent-rgb), 0.6);
}

.btn-neon-accent {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.2) inset;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-neon-accent:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 15px rgba(var(--color-accent-rgb), 0.6);
}

/* Global Button Overrides */
.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: #d04d1e !important;
  border-color: #d04d1e !important;
}

/* ══════════════════════════════════════════════════════════
   FOOTER STYLES
   ══════════════════════════════════════════════════════════ */
.site-footer {
    background-color: #f1f3f2;
    color: var(--color-text);
    padding-top: 4rem;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    display: block;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 200px;
    height: 1.5px;
    background-color: #f8c2b3; /* Light coral underline from design */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.footer-contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    background-color: #f1f3f2;
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    max-width: 1100px;
    margin: 0 auto;
}

/* Specific decoration for SITIO heading as seen in design */
.footer-heading-dot::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-45px); /* Position it to the left of centered text */
    top: 0;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 2rem;
        text-align: center;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-heading-dot::before {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    z-index: 2000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-left: 10px;
}

.whatsapp-label {
    background-color: #f5f7f9;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-label span {
    color: #4b6276;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.whatsapp-label strong {
    color: #1e2d3b;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-label {
        display: none;
    }
    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
}
/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS (Global)
   ══════════════════════════════════════════════════════════ */
.slider-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slider-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.slider-img {
    width: 100%;
    height: 180px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
}

.slider-card .product-name {
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    color: #222 !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
    height: 2.4em !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

.product-sku {
    font-size: 0.72rem;
    color: #666;
    margin-bottom: 8px;
}

.slider-card .product-price {
    font-weight: 800;
    font-size: 0.95rem;
    color: #222;
}

.stock-status {
    color: #28a745;
    font-weight: 600;
    font-size: 0.75rem;
}

.btn-add-cart {
    background-color: var(--color-primary, #f16533);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 4px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    width: 100%;
    transition: background 0.2s;
}

.btn-add-cart:hover {
    background-color: #d84f1d;
    color: #fff;
}

.quantity-input-group {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.qty-input {
    width: 45px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.8rem;
}

