                                                /* ===============================
   GLOBAL
   =============================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fafafa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   HEADER
   =============================== */
.site-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    padding: 6px 0;
}

.cart-link {
    font-size: 20px;
}

.cart-link i {
    color: #333;
}

.cart-link:hover i {
    color: #e91e63;
}

/* Tablet */
@media (max-width: 992px) {
    .site-logo {
        height: 65px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .site-logo {
        height: 55px;
    }
}

/* ===============================
   VIEW TOGGLE
   =============================== */
.view-toggle {
    margin: 20px 0;
}

.view-toggle button {
    padding: 8px 14px;
    margin-right: 5px;
    cursor: pointer;
}





/* ===============================
   PRODUCT CARD
   =============================== */
.product {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border: 1px solid #ddd;
}
/* Fixed image container */
.product .main-img {
    width: 100%;
    height: 260px;           /* 🔒 FIXED HEIGHT */
    border-radius: 8px;
}
/* Thumbnails */
.product .thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.product img {
    max-width: 100%;
}

.price {
    font-weight: bold;
    margin-bottom: 10px;
}

/* BUY BUTTON */
.buy-btn,
.product .btn-success {
    background: #000;
    color: #fff;
    border: none;
}

.buy-btn:hover,
.product .btn-success:hover {
    background: #333;
}

/* ===============================
   SIZE BUTTONS
   =============================== */
.size-btn {
    margin: 4px;
    padding: 6px 10px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
}

.size-btn.active {
    background: #000;
    color: #fff;
}

.size-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===============================
   FOOTER – PREMIUM GRADIENT
   =============================== */
.footer-premium {
    background: linear-gradient(135deg, #1a1a1a, #2b0f1f);
    color: #e0e0e0;
    font-size: 14px;
    padding-top: 50px;
}

.footer-premium .row {
    align-items: flex-start;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-text {
    margin-top: 12px;
    line-height: 1.7;
    color: #ccc;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffb6c1;
}

.footer-social {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-social i {
    margin-right: 8px;
}

.footer-social:hover {
    color: #ffb6c1;
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
}

.footer-copy {
    color: #aaa;
    font-size: 13px;
}

/* Footer mobile */
@media (max-width: 768px) {
    .footer-premium {
        text-align: center;
    }

    .footer-logo {
        max-width: 180px;
        margin: 0 auto 15px;
    }
}
/* ===============================
   HERO BANNER
   =============================== */
.hero-banner {
    background: linear-gradient(135deg, #fff5f8, #fdecef);
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2b0f1f;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
    line-height: 1.6;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-banner {
        padding: 50px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
/* ===============================
   ADVERTISEMENT CARD
================================ */
.ad-card {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    border: 1px dashed #e91e63;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #880e4f;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.ad-card img,
.container .col-12 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
/* ===============================
   OFFER PRICE STYLES
=============================== */

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.offer-price {
    font-size: 18px;
    font-weight: 700;
    color: #e91e63;
}

.actual-price {
    font-size: 14px;
    color: #777;
    text-decoration: line-through;
}

.normal-price {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.offer-badge {
    background: #e91e63;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}
/* ===== BRAND TEXT ===== */
.brand-text {
    line-height: 0.7;
}

.brand-name {
    font-family: 'Gabriola', serif;
    font-size: 45px;
    font-weight: 1000;
    color: #111;
}

.brand-tagline {
    font-family: 'Gabriola', serif;
    font-size: 14px;
    color: #111;
    font-weight: 1000;
    letter-spacing: 1.5px;
}

/* Header logo */
.site-logo {
    height: 70px;
    width: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .brand-name {
        font-size: 22px;
    }
    .brand-tagline {
        font-size: 11px;
    }
    .site-logo {
        height: 55px;
    }
}

.breadcrumb {
      --bs-breadcrumb-divider: '>';
    font-size: 13px;
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
}

.breadcrumb a:hover {
    color: #000;
}

/* ===============================
   PRODUCT GRID FIX (BOOTSTRAP)
================================ */

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .btn {
    font-size: 14px;
}
body {
    background: #f8f9fa;
}

.card {
    border: none;
}
/* ===============================
   LIST VIEW FIX
=============================== */

.product-item.list-mode .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.product-item.list-mode .product-img,
.product-item.list-mode .card-img-top {
    width: 220px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-item.list-mode .card-body {
    text-align: left;
    padding-left: 20px;
}
.product-item.list-mode .card:hover {
    transform: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}
