/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #F8FAFC;
    color: #1E293B;
    line-height: 1.5;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #00468C;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2000;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 38px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00468C;
    letter-spacing: -1px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #1E293B;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #00468C;
}

.cart-icon-wrapper {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== HERO SECTION ===== */
.anniversary-hero {
    background: white;
    padding: 40px 5%;
    text-align: center;
    border-bottom: 4px solid #00468C;
}

.anniversary-hero img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.8rem;
    color: #00468C;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-subtext {
    font-size: 1rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #00468C;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00468C;
    margin: 10px auto;
}

.section-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 1rem;
    margin-top: -30px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES GRID ===== */
.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #00468C;
}

.feature-item p {
    color: #64748B;
    font-size: 0.9rem;
}

/* ===== PRODUCT GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.img-slot {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #f8fafc;
    border-radius: 16px;
}

.img-slot img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

/* Size Badge */
.size-badge {
    display: inline-block;
    background: #00468C;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    align-self: center;
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
    color: #00468C;
}

.p-desc {
    color: #64748B;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00468C;
    margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
    font-size: 0.85rem;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 8px;
    text-align: center;
    transition: all 0.2s;
}

.btn-blue {
    background: #00468C;
    color: white;
}

.btn-blue:hover {
    background: #003366;
    transform: translateY(-2px);
}

/* Call to Order Button - Clean White/Blue */
.btn-call {
    background: white;
    color: #00468C;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #00468C;
}

.btn-call:hover {
    background: #00468C;
    color: white;
    transform: translateY(-2px);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #10b981;
    color: white;
    text-align: center;
    border-radius: 50px;
    padding: 12px 24px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

/* ===== FLOATING BUTTONS ===== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5000;
}

.fab-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.fab:hover {
    transform: scale(1.05);
}

.bg-blue {
    background: #00468C;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.bg-green {
    background: #25D366;
}

.fab-label {
    background: #1e293b;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
    pointer-events: none;
    margin-right: 12px;
    white-space: nowrap;
}

.fab-wrapper:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CART SIDEBAR ===== */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

#cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #00468C;
    margin-bottom: 20px;
}

.close-btn {
    font-size: 32px;
    cursor: pointer;
    font-weight: 700;
    color: #64748B;
}

.close-btn:hover {
    color: #ef4444;
}

#cart-items-list {
    flex: 1;
    margin-bottom: 20px;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.cart-total-box {
    border-top: 2px solid #00468C;
    padding-top: 15px;
    margin-top: auto;
}

.cart-total-box h4 {
    font-size: 1.3rem;
    color: #00468C;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 5% 40px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
    display: block;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #00468C;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header {
        top: 0;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        order: 1;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    nav a {
        font-size: 0.8rem;
    }
    
    .cart-icon-wrapper {
        order: 2;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    #cart-sidebar {
        width: 85%;
    }
}