/* ==========================================================
   Gül ve Lavanta - Ana Stil Dosyası
   Renkler: Gül pembesi + lavanta + krem
   ========================================================== */

:root {
    --brand: #c2185b;            /* gül pembe */
    --brand-dark: #a3134c;
    --brand-light: #e91e63;
    --lavender: #9575cd;
    --lavender-dark: #7e57c2;
    --cream: #fdf8f5;
    --rose-soft: #fce4ec;
    --gold: #d4a574;
    --text: #2c2c2c;
    --text-muted: #6c757d;
    --border: #ece4e0;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a { color: var(--brand); text-decoration: none; transition: 0.25s; }
a:hover { color: var(--brand-dark); }

.text-brand { color: var(--brand) !important; }
.bg-brand { background: var(--brand) !important; }
.bg-light-rose { background: var(--rose-soft); }

/* Buttons */
.btn-brand {
    background: var(--brand);
    color: #fff;
    border: 2px solid var(--brand);
    padding: 10px 26px;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}
.btn-outline-brand {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}
.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: linear-gradient(90deg, var(--brand) 0%, var(--lavender) 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: #fdf8f5; }

/* ============ NAVBAR ============ */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 15px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--lavender) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.brand-logo-img {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    color: var(--brand);
    font-size: 22px;
    font-weight: 700;
}
.brand-slogan {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.search-form {
    max-width: 500px;
}
.search-form .form-control {
    border-radius: 30px 0 0 30px;
    border-right: 0;
    padding: 10px 18px;
    border-color: var(--border);
}
.search-form .btn-brand {
    border-radius: 0 30px 30px 0;
    padding: 10px 22px;
}

.cart-link { position: relative; }
.cart-badge {
    position: absolute;
    top: 0;
    right: -5px;
    font-size: 10px;
}

/* ============ CATEGORY MENU ============ */
.category-menu {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}
.category-menu::-webkit-scrollbar { height: 0; }
.category-menu .nav {
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: max-content;
}
.category-menu .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 12px 12px;
    font-size: 13.5px;
    transition: 0.25s;
    white-space: nowrap;
}
.category-menu .nav-link:hover,
.category-menu .nav-link.active {
    color: var(--brand);
}

@media (min-width: 992px) and (max-width: 1280px) {
    .category-menu .nav-link { padding: 12px 8px; font-size: 13px; }
}

/* ============ HERO ============ */
.hero-section { position: relative; }
.carousel-item {
    height: 520px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    position: relative;
}
.carousel-item.hero-default {
    background: linear-gradient(135deg, #c2185b 0%, #9575cd 50%, #7e57c2 100%);
    position: relative;
}
.carousel-item.hero-default::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,192,203,0.2) 0%, transparent 60%);
    z-index: 1;
}
.carousel-item.hero-default .hero-overlay {
    background: transparent !important;
}
.carousel-item.hero-default .container {
    position: relative;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 70%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 100px 0;
    color: #fff;
}
.hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ============ FEATURES ============ */
.features-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.feature-box {
    text-align: center;
    padding: 10px;
}
.feature-box i {
    font-size: 32px;
    color: var(--brand);
    margin-bottom: 10px;
}
.feature-box h6 {
    font-weight: 600;
    margin-bottom: 3px;
}
.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============ SECTIONS ============ */
.section { padding: 70px 0; }
.section-header { margin-bottom: 40px; }
.section-header h2 {
    font-size: 36px;
    color: var(--brand);
    margin-bottom: 10px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}
.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--rose-soft);
    color: var(--brand);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ============ CATEGORY CARDS ============ */
.category-card {
    display: block;
    color: var(--text);
}
.category-card-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}
.category-card:hover .category-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(194, 24, 91, 0.15);
    border-color: var(--brand);
}
.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--rose-soft), #f3e5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand);
    transition: 0.35s;
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--brand), var(--lavender));
    color: #fff;
}
.category-card h5 {
    color: var(--text);
    margin: 0;
    font-size: 16px;
}
.category-arrow {
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 0;
    color: var(--brand);
    transition: 0.35s;
}
.category-card:hover .category-arrow { opacity: 1; right: 20px; }

/* ============ PRODUCT CARD ============ */
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.badge-new,
.badge-discount,
.badge-stock {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    color: #fff;
}
.badge-new { left: 12px; background: var(--lavender); }
.badge-discount { right: 12px; background: #e91e63; }
.badge-stock {
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    font-size: 14px;
    padding: 6px 16px;
}
.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}
.product-card:hover .product-actions { bottom: 0; }
.product-actions a,
.product-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}
.product-actions a:hover,
.product-actions button:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.product-body {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 40px;
    margin-bottom: 8px;
}
.product-title a {
    color: var(--text);
}
.product-title a:hover { color: var(--brand); }
.product-price {
    font-weight: 600;
}
.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 14px;
}
.new-price {
    color: var(--brand);
    font-size: 17px;
    font-weight: 700;
}

/* ============ BRAND STORY ============ */
.story-image {
    position: relative;
}
.story-img-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--rose-soft) 0%, #e1bee7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: #fff;
}
.story-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.story-features li {
    padding: 6px 0;
    font-weight: 500;
}
.story-features i {
    color: var(--brand);
    margin-right: 10px;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--lavender) 100%);
    color: #fff;
    padding: 50px 0;
}
.newsletter-section h3 {
    color: #fff;
    margin-bottom: 0;
}
.newsletter-form .form-control {
    border: 0;
    padding: 12px 20px;
}
.newsletter-form .btn {
    padding: 12px 30px;
    font-weight: 500;
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, var(--rose-soft) 0%, #f3e5f5 100%);
    padding: 50px 0 30px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    color: var(--brand);
    margin-bottom: 10px;
}
.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    background: transparent;
}
.page-header .breadcrumb-item a { color: var(--text); }
.page-header .breadcrumb-item.active { color: var(--brand); }

/* ============ SIDEBAR / FILTERS ============ */
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.widget-title {
    font-weight: 600;
    color: var(--brand);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rose-soft);
    margin-bottom: 15px;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li a {
    display: block;
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: 0.25s;
}
.category-list li:last-child a { border: 0; }
.category-list li a:hover,
.category-list li a.active {
    color: var(--brand);
    padding-left: 10px;
}

/* ============ SHOP TOOLBAR ============ */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============ PRODUCT DETAIL ============ */
.product-gallery .main-image {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 1;
}
.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnails .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border);
    cursor: pointer;
}
.thumbnails .thumb.active {
    border-color: var(--brand);
}
.product-info .product-cat a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-name {
    font-size: 32px;
    color: var(--text);
    margin: 10px 0;
}
.product-price-box {
    font-size: 28px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.product-price-box .new-price { font-size: 32px; }
.product-meta {
    list-style: none;
    padding: 0;
}
.product-meta li { padding: 6px 0; }
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
}
.qty-selector button {
    width: 40px;
    height: 45px;
    border: 0;
    background: #fff;
    font-size: 18px;
    color: var(--brand);
}
.qty-selector input {
    width: 60px;
    height: 45px;
    border: 0;
    text-align: center;
    font-weight: 600;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; }
.product-features .col-md-4 {
    padding: 10px;
    text-align: center;
    background: var(--cream);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}
.product-features i { font-size: 20px; display: block; margin-bottom: 5px; }

.product-tabs .nav-link {
    color: var(--text);
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    font-weight: 500;
}
.product-tabs .nav-link.active {
    color: var(--brand);
    background: transparent;
    border-color: var(--brand);
}

/* ============ CART ============ */
.cart-table {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.cart-head {
    background: var(--cream);
    padding: 15px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cart-row {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    row-gap: 10px;
}
.cart-summary {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
}
.cart-summary h5 {
    color: var(--brand);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rose-soft);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
}

.checkout-items {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 15px;
}
.checkout-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

/* ============ CHECKOUT / PANELS ============ */
.card-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
}
.payment-option {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}
.payment-option:has(input:checked) {
    border-color: var(--brand);
    background: var(--rose-soft);
}

/* ============ ORDER COMPLETE ============ */
.order-complete-box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.success-icon {
    width: 100px;
    height: 100px;
    background: #d4edda;
    color: #28a745;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin-bottom: 20px;
}
.info-box {
    background: var(--cream);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.info-box h6 {
    color: var(--brand);
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* ============ AUTH ============ */
.auth-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ============ ACCOUNT ============ */
.account-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.account-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: 0.25s;
}
.account-nav li:last-child a { border: 0; }
.account-nav a:hover,
.account-nav a.active {
    background: var(--rose-soft);
    color: var(--brand);
    padding-left: 20px;
}
.account-nav i { width: 20px; color: var(--brand); }

/* ============ CONTACT ============ */
.contact-info { padding: 10px; }
.contact-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border);
}
.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--rose-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}
.contact-item h6 { margin-bottom: 5px; }
.contact-item p { margin: 0; color: var(--text-muted); }

/* ============ VALUE CARDS (About) ============ */
.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(194, 24, 91, 0.1);
}
.value-card i {
    font-size: 40px;
    color: var(--brand);
    margin-bottom: 15px;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #2c1d2d;
    color: #ccc;
    padding: 60px 0 25px;
    margin-top: 60px;
}
.site-footer a { color: #ccc; }
.site-footer a:hover { color: #fff; }
.footer-title {
    color: #fff;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
}
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.footer-contact li {
    padding: 5px 0;
    font-size: 14px;
}
.footer-contact i {
    color: var(--brand-light);
    margin-right: 10px;
    width: 16px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 8px;
    transition: 0.3s;
}
.social-links a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-3px);
}
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

/* ============ İYZİCO ROZET MOBİL ============ */
@media (max-width: 768px) {
    #iyzi-root {
        display: none !important;
    }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    /* Top Bar — mobil için sadece kargo bilgisi */
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }
    .top-bar .container {
        justify-content: center !important;
    }
    .top-bar .small:last-child {
        display: none !important;
    }

    /* Main Navbar */
    .main-navbar {
        padding: 10px 0;
    }
    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .brand-name {
        font-size: 18px;
    }
    .brand-slogan {
        font-size: 10px;
    }
    .navbar-toggler {
        padding: 6px 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
    }
    .navbar-toggler:focus { box-shadow: none; }

    /* Mobil menü collapse */
    .navbar-collapse {
        background: #fff;
        margin-top: 12px;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid var(--border);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    .search-form { margin: 0 0 15px 0 !important; max-width: 100%; }
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border);
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: 0;
    }
    .cart-badge {
        right: auto !important;
        left: 100px;
    }

    /* Hero */
    .carousel-item {
        height: 360px;
    }
    .hero-content {
        padding: 50px 0;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .hero-content .btn-lg {
        padding: 10px 22px;
        font-size: 14px;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 70%);
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        opacity: 0.6;
    }

    /* Features */
    .features-section { padding: 25px 0; }
    .feature-box i { font-size: 24px; }
    .feature-box h6 { font-size: 13px; }
    .feature-box p { font-size: 11px; }

    /* Sections */
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 25px; }
    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 13px; }

    /* Category cards */
    .category-card-inner {
        padding: 18px 10px;
    }
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .category-card h5 {
        font-size: 13px;
    }

    /* Product cards */
    .product-title {
        font-size: 13px;
        min-height: 36px;
    }
    .new-price { font-size: 15px; }
    .old-price { font-size: 12px; }
    .product-body { padding: 10px; }

    /* Product detail */
    .product-name { font-size: 22px; }
    .product-price-box { font-size: 22px; }
    .product-price-box .new-price { font-size: 24px; }

    /* Footer */
    .site-footer { padding: 40px 0 20px; margin-top: 40px; }
    .site-footer .footer-title { margin-top: 10px; }
    .footer-divider { margin: 25px 0 15px; }

    /* Brand story */
    .story-img-placeholder { font-size: 60px; }

    /* WhatsApp */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 18px;
        right: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 22px; }
    .carousel-item { height: 320px; }
    .section-header h2 { font-size: 20px; }
    .brand-slogan { display: none; }
}

/* Alert */
.alert-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* Pagination */
.page-link {
    color: var(--brand);
    border-color: var(--border);
}
.page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
}
