/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fcf7f8;
    color: #2c1a1f;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER – BEIGE BACKGROUND ===== */
.header {
    background: #f5e6d3;
    box-shadow: 0 2px 20px rgba(114, 47, 55, 0.10);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 0;
    border-bottom: 2px solid #722f37;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #722f37;
    line-height: 1.2;
}

.tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b4a52;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.tagline .sep {
    margin: 0 6px;
    color: #b38b8f;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #3d2a2f;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #722f37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #722f37;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.admin-btn {
    background: #722f37;
    color: white !important;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.admin-btn:hover {
    background: #5a242b;
}

.admin-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #722f37;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== SLIDER ===== */
.hero-slider-wrapper {
    position: relative;
    padding: 2rem 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.10);
    background: white;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    gap: 2rem;
    background: linear-gradient(135deg, #fdf8f6 0%, #ffffff 100%);
    box-sizing: border-box;
}

.slide-content {
    flex: 1;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #2c1a1f;
}

.slide-content h2 span {
    color: #722f37;
    position: relative;
}

.slide-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(114, 47, 55, 0.20);
    border-radius: 4px;
}

.slide-content p {
    font-size: 1.1rem;
    color: #5a3e45;
    max-width: 450px;
    margin-bottom: 1.8rem;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(114, 47, 55, 0.12));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(114, 47, 55, 0.7);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #722f37;
    transform: translateY(-50%) scale(1.05);
}

.prev { left: 15px; }
.next { right: 15px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0 0.8rem;
    background: transparent;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4b0b5;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: #722f37;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(114, 47, 55, 0.3);
}

/* ===== PRODUCT SECTIONS ===== */
.products-section {
    padding: 4rem 0;
}

.alt-bg {
    background: #faf2f4;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    display: inline-block;
    background: #722f37;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #2c1a1f;
}

.section-header p {
    color: #6b4a52;
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.06);
    transition: all 0.3s;
    border: 1px solid #eedfe1;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(114, 47, 55, 0.12);
    border-color: #d4b0b5;
}

.product-img {
    position: relative;
    background: #f5ecee;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-img img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b33a44;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-info {
    padding: 1.2rem 1.2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2c1a1f;
}

.product-info p {
    font-size: 0.9rem;
    color: #6b4a52;
    flex: 1;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #722f37;
    margin-top: auto;
}

.empty-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    color: #8a6a72;
}

.empty-msg i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ===== FOOTER – DARK BLUE ===== */
.footer {
    background: #0a1a2e;
    color: #b0c4d9;
    padding-top: 3rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #7a9bb5;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    color: #b0c4d9;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a {
    color: #b0c4d9;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #b0c4d9;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-list li i {
    width: 20px;
    color: #7a9bb5;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #b0c4d9;
    transition: all 0.2s;
    font-size: 1rem;
}

.social-icons a:hover {
    background: #1a3b5c;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #6a8aa3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .slide-content p {
        max-width: 100%;
    }
    .slide-image img {
        max-height: 200px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .prev { left: 5px; }
    .next { right: 5px; }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #f5e6d3;
        padding: 1.2rem 0;
        box-shadow: 0 8px 24px rgba(114, 47, 55, 0.06);
        border-radius: 12px;
        margin-top: 0.8rem;
        gap: 0.8rem;
    }
    .nav.open {
        display: flex;
    }
    .nav-link {
        width: 100%;
        padding: 0.5rem 1rem;
        text-align: center;
    }
    .nav-link::after {
        display: none;
    }
    .admin-btn {
        width: auto;
        margin: 0 auto;
    }
    .logo-text h1 {
        font-size: 1.1rem;
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }
    .slide-image img {
        max-height: 160px;
    }
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.2rem;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .logo-img {
        height: 38px;
    }
    .logo-text h1 {
        font-size: 0.95rem;
    }
    .slide {
        padding: 1.2rem 1rem;
    }
    .slide-content h2 {
        font-size: 1.4rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
    .slide-image img {
        max-height: 120px;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .product-info h3 {
        font-size: 0.9rem;
    }
    .product-price {
        font-size: 1rem;
    }
	
/* ===== PROMO SUPER SALES SECTION ===== */
.promo-sales {
    padding: 3rem 0 4rem;
    background: #fdf8f6;
    border-top: 3px solid #722f37;
    border-bottom: 3px solid #722f37;
}

.promo-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.promo-badge {
    display: inline-block;
    background: #722f37;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.promo-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #2c1a1f;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.promo-header h2 span {
    color: #722f37;
    margin: 0 4px;
}

.promo-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #722f37;
    margin: 0.2rem 0 0.5rem;
}

.promo-desc {
    font-size: 1rem;
    color: #5a3e45;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.promo-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.06);
    transition: all 0.3s;
    border: 1px solid #eedfe1;
    text-align: center;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(114, 47, 55, 0.12);
    border-color: #d4b0b5;
}

.promo-card-img {
    position: relative;
    background: #f5ecee;
    padding: 1.2rem;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card-img img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.promo-card-img .sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b33a44;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.promo-card-body {
    padding: 1rem 1.2rem 1.5rem;
}

.promo-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c1a1f;
    margin-bottom: 0.2rem;
}

.promo-card-body p {
    font-size: 0.85rem;
    color: #6b4a52;
    margin-bottom: 0.6rem;
}

.super-price {
    display: inline-block;
    background: #722f37;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .promo-header h2 {
        font-size: 1.6rem;
    }
    .promo-subtitle {
        font-size: 1.1rem;
    }
    .promo-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .promo-card-img {
        height: 120px;
    }
    .promo-card-img img {
        max-height: 80px;
    }
    .promo-card-body h3 {
        font-size: 0.9rem;
    }
    .promo-card-body p {
        font-size: 0.75rem;
    }
    .super-price {
        font-size: 0.7rem;
        padding: 3px 12px;
    }
}
}