/* ==========================================================================
   Aleeza Storee - Theme Custom Stylesheet
   ========================================================================== */

/* Top Announcement Bar */
.top-announcement-bar {
    background-color: #f1f5f9;
    font-size: 13px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-links {
    display: flex;
    gap: 18px;
}
.top-link {
    color: #475569;
    transition: color 0.2s ease;
    font-weight: 500;
}
.top-link:hover {
    color: var(--color-primary);
}
.top-link.hotline {
    color: #047857;
    font-weight: 700;
}

/* Header Section */
.site-header {
    background-color: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-logo-img {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.logo-link:hover .site-logo-img {
    transform: scale(1.03);
}
.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 2px 4px;
}
.logo-badge {
    display: none;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #00a651;
    line-height: 1.1;
}
.brand-tagline {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}


/* Search Bar */
.header-search-bar {
    flex: 1;
    max-width: 540px;
}
.search-form {
    display: flex;
    align-items: center;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-full);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}
.search-input:focus {
    border-color: var(--color-primary);
}
.search-btn {
    position: absolute;
    right: 4px;
    background-color: var(--color-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.search-btn:hover {
    background-color: var(--color-primary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s ease;
}
.action-item:hover {
    color: var(--color-primary);
}
.action-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.sub-text {
    font-size: 11px;
    color: #94a3b8;
}
.cart-icon-wrapper {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Navigation Bar */
.main-nav-bar {
    background-color: #00a651;
    color: #ffffff;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}
.nav-menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.2s ease;
}
.nav-menu .menu-item:hover a,
.nav-menu .menu-item.active a {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero-banner-section {
    padding: 24px 0;
}
.hero-card-default {
    background: linear-gradient(135deg, #e6f7ef 0%, #d1fae5 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.08);
}
.hero-content {
    max-width: 550px;
}
.hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero-title .highlight {
    color: #00a651;
}
.hero-subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
}
.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-badge-item {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-badge-item .badge-icon {
    color: #00a651;
    margin-right: 4px;
}

/* Mockup Cans Showcase */
.hero-products-showcase {
    display: flex;
    gap: 12px;
}
.can-mockup {
    width: 100px;
    height: 140px;
    border-radius: 12px;
    padding: 12px 6px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.can-mockup:hover {
    transform: translateY(-8px);
}
.can-mockup.blue { background: linear-gradient(180deg, #1e40af, #3b82f6); }
.can-mockup.green { background: linear-gradient(180deg, #15803d, #22c55e); }
.can-mockup.orange { background: linear-gradient(180deg, #c2410c, #f97316); }
.can-mockup.red { background: linear-gradient(180deg, #b91c1c, #ef4444); }

.can-brand { font-size: 11px; font-weight: 900; letter-spacing: 0.5px; }
.can-sub { font-size: 14px; font-weight: 900; color: #fef08a; }
.can-desc { font-size: 9px; margin-top: 6px; opacity: 0.9; }

/* Categories Grid */
.categories-section {
    padding: 24px 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}
.see-all-link {
    color: #00a651;
    font-weight: 700;
    font-size: 14px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.category-card {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease;
}
.category-card:hover {
    transform: translateY(-4px);
}
.category-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.blue-bg { background: #dbeafe; }
.green-bg { background: #dcfce7; }
.yellow-bg { background: #fef3c7; }
.red-bg { background: #fee2e2; }
.purple-bg { background: #f3e8ff; }

.category-name {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

/* Trust Badges */
.trust-badges-section {
    padding: 16px 0;
}
.trust-badges-grid {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: var(--shadow-card);
}
.trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-icon {
    font-size: 28px;
    color: var(--color-primary);
}
.trust-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.trust-info p {
    font-size: 12px;
    color: #64748b;
}

/* Product Cards Grid */
.products-section {
    padding: 28px 0;
}
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.product-img-wrapper {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    height: 200px;
    overflow: hidden;
}
.product-img-wrapper img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}
.product-mockup-can {
    width: 110px;
    height: 150px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
.can-mockup-img {
    width: 110px;
    height: 145px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    background: #ffffff;
    padding: 6px;
    transition: transform 0.3s ease;
}
.can-mockup-img:hover {
    transform: translateY(-6px);
}
.top-seller-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    padding: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.promo-cans-cluster {
    display: flex;
    gap: 12px;
    align-items: center;
}
.promo-cans-cluster img {
    width: 85px;
    height: 115px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.promo-cans-cluster img:hover {
    transform: scale(1.08);
}

.blue-can { background: linear-gradient(180deg, #1d4ed8, #3b82f6); }
.green-can { background: linear-gradient(180deg, #15803d, #22c55e); }
.orange-can { background: linear-gradient(180deg, #c2410c, #ea580c); }
.red-can { background: linear-gradient(180deg, #b91c1c, #dc2626); }

.p-brand { font-size: 12px; font-weight: 900; }
.p-gold { font-size: 16px; font-weight: 900; color: #fef08a; }

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.product-short-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    height: 36px;
    overflow: hidden;
}
.product-price {
    font-size: 18px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 6px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 13px;
}
.stars { color: #f59e0b; }
.rating-count { color: #64748b; }

.btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    padding: 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}
.btn-buy-now:hover {
    background: var(--color-primary);
    color: white;
}

/* Top Seller Grid */
.top-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.top-seller-item {
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}
.rank-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.rank-1 { background: #f59e0b; }
.rank-2 { background: #94a3b8; }
.rank-3 { background: #d97706; }
.rank-4 { background: #64748b; }

.mini-can {
    width: 50px;
    height: 60px;
    border-radius: 6px;
    color: white;
    font-size: 8px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-seller-info h4 { font-size: 14px; font-weight: 700; }
.top-seller-info .price { font-size: 14px; font-weight: 800; color: #ef4444; }
.top-seller-info .rating { font-size: 11px; color: #64748b; }

/* Promo Discount Section */
.promo-discount-card {
    background: linear-gradient(135deg, #d9f99d 0%, #86efac 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.promo-subtitle-tag {
    font-size: 13px;
    font-weight: 800;
    color: #047857;
    letter-spacing: 1px;
}
.promo-headline {
    font-size: 34px;
    font-weight: 900;
    color: #064e3b;
    line-height: 1.1;
    margin: 6px 0;
}
.promo-desc {
    color: #047857;
    margin-bottom: 20px;
}
.promo-badge-corner {
    background: #f59e0b;
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.promo-badge-corner .badge-title { font-weight: 900; font-size: 14px; }
.promo-badge-corner .badge-sub { font-size: 11px; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: #ffffff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 16px;
}
.avatar-initials {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-content .quote {
    font-style: italic;
    color: #334155;
    font-size: 14px;
    margin-bottom: 10px;
}
.star-rating { color: #f59e0b; margin-bottom: 6px; }

/* Cek Resi & Why Us Section */
.cek-resi-why-section {
    padding: 32px 0;
}
.why-resi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.why-us-card, .cek-resi-card {
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-icon { font-size: 20px; }
.feature-text strong { display: block; font-size: 13px; color: #0f172a; }
.feature-text span { font-size: 11px; color: #64748b; }

.resi-form .input-group {
    display: flex;
    gap: 10px;
}
.resi-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
}
.resi-input:focus { border-color: var(--color-primary); }
.btn-cek-resi {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
}
.resi-help-text {
    font-size: 12px;
    color: #64748b;
    margin-top: 10px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 24px 0 40px;
}
.newsletter-card {
    background: #00a651;
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.newsletter-text {
    display: flex;
    align-items: center;
    gap: 16px;
}
.icon-mail { font-size: 32px; }
.newsletter-text h3 { font-size: 20px; font-weight: 800; }
.newsletter-text p { font-size: 14px; opacity: 0.9; }

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 450px;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: none;
    outline: none;
}
.newsletter-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
}

/* Footer Section */
.site-footer {
    background-color: #ffffff;
    padding: 48px 0 24px;
    border-top: 1px solid #e2e8f0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}
.brand-desc {
    font-size: 13px;
    color: #64748b;
    margin: 16px 0;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.footer-heading {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 13px;
    color: #64748b;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--color-primary);
}
.footer-contact li {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 24px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}
.payment-badges-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.payment-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pay-badge {
    border: 1px solid #cbd5e1;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #334155;
    background: #f8fafc;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .header-container { flex-direction: column; }
    .header-search-bar { width: 100%; }
    .hero-card-default { flex-direction: column; text-align: center; }
    .categories-grid, .trust-badges-grid, .product-cards-grid, .top-sellers-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-resi-grid { grid-template-columns: 1fr; }
    .newsletter-card { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
    .categories-grid, .product-cards-grid, .top-sellers-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
