/* Fonts */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/fonts/opensans-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/static/fonts/opensans-semibold.ttf') format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/static/fonts/opensans-bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/fonts/playfair-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/static/fonts/playfair-bold.ttf') format('truetype');
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #3a3a3a;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ==================== HEADER ==================== */
.header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #b8860b;
    letter-spacing: -0.5px;
}
.logo span { color: #2c2c2c; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.nav a:hover { color: #b8860b; border-bottom-color: #b8860b; }
.cart-link {
    background: #2c2c2c !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
}
.cart-link:hover { background: #b8860b !important; }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 100px 24px 110px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/static/images/hero-bg.jpg') center/cover;
    opacity: 0.2;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-badge {
    display: inline-block;
    background: rgba(184,134,11,0.2);
    border: 1px solid rgba(184,134,11,0.4);
    color: #daa520;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-btn {
    display: inline-block;
    background: #b8860b;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(184,134,11,0.3);
}
.hero-btn:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(184,134,11,0.4);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    background: #fafafa;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}
.trust-bar-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}
.trust-icon {
    width: 36px;
    height: 36px;
    background: #f0e6d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ==================== CONTAINER ==================== */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 60px 0; }

/* ==================== CATEGORIES ==================== */
.categories {
    display: flex;
    gap: 10px;
    padding: 0 0 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.cat-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.cat-btn:hover {
    border-color: #b8860b;
    color: #b8860b;
}
.cat-btn.active {
    background: #b8860b;
    border-color: #b8860b;
    color: #fff;
}

/* ==================== SECTION HEADINGS ==================== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}
.section-sub {
    color: #888;
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: #b8860b;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ==================== GIFT GRID ==================== */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    padding-bottom: 20px;
}
.gift-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
}
.gift-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.gift-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f5f5f5;
}
.gift-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gift-card:hover .gift-card-img-wrap img {
    transform: scale(1.06);
}
.gift-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #b8860b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.gift-card-body { padding: 20px; }
.gift-card-category {
    font-size: 0.72rem;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 6px;
}
.gift-card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c2c2c;
    line-height: 1.3;
}
.gift-card-name a { color: #2c2c2c; }
.gift-card-name a:hover { color: #b8860b; }
.gift-card-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.gift-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.gift-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
}
.gift-price .currency { font-size: 0.85rem; color: #888; font-weight: 400; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary { background: #b8860b; color: #fff; }
.btn-primary:hover { background: #d4a017; transform: translateY(-1px); }
.btn-dark { background: #2c2c2c; color: #fff; }
.btn-dark:hover { background: #444; }
.btn-outline { background: transparent; border: 2px solid #2c2c2c; color: #2c2c2c; }
.btn-outline:hover { background: #2c2c2c; color: #fff; }
.btn-outline-gold { background: transparent; border: 2px solid #b8860b; color: #b8860b; }
.btn-outline-gold:hover { background: #b8860b; color: #fff; }
.btn-success { background: #2d8a56; color: #fff; }
.btn-success:hover { background: #237044; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a93226; }
.btn-sm { padding: 7px 16px; font-size: 0.75rem; }
.btn-lg { padding: 16px 36px; font-size: 0.9rem; }

/* ==================== GIFT DETAIL ==================== */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.85rem;
    color: #999;
}
.breadcrumb a { color: #b8860b; }
.breadcrumb span { margin: 0 8px; }
.gift-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 20px 0 60px;
}
.gift-detail-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/3;
}
.gift-detail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gift-detail-info { padding-top: 10px; }
.gift-detail-info .category-label {
    font-size: 0.75rem;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
}
.gift-detail-info h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.2;
}
.gift-detail-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
}
.gift-detail-info .desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}
.detail-features {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.detail-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}
.detail-feature-icon {
    width: 32px;
    height: 32px;
    background: #f8f3e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.quantity-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.quantity-row label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}
.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}
.quantity-input button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f8f8;
    font-size: 1.1rem;
    cursor: pointer;
    color: #555;
    transition: background 0.2s;
}
.quantity-input button:hover { background: #eee; }
.quantity-input input {
    width: 50px;
    padding: 8px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}
.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #b8860b;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    font-family: inherit;
}
.add-to-cart-btn:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.25);
}

/* ==================== CART ==================== */
.cart-page { padding: 40px 0 60px; }
.cart-page h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c2c2c;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px 20px;
    transition: border-color 0.2s;
}
.cart-item:hover { border-color: #ddd; }
.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #2c2c2c;
    margin-bottom: 4px;
}
.cart-item-name a { color: #2c2c2c; }
.cart-item-name a:hover { color: #b8860b; }
.cart-item-meta { font-size: 0.85rem; color: #999; }
.cart-item-qty {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}
.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    min-width: 90px;
    text-align: right;
}
.cart-item-remove {
    background: none;
    border: 1px solid #eee;
    color: #999;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cart-item-remove:hover { background: #fde8e8; border-color: #f5c6cb; color: #c0392b; }

.cart-summary {
    background: #fafafa;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    border: 1px solid #eee;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #666;
}
.cart-summary-row.total {
    border-top: 2px solid #e0e0e0;
    margin-top: 12px;
    padding-top: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c2c2c;
}
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}
.empty-cart-icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.3; }
.empty-cart h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}
.empty-cart p { color: #999; margin-bottom: 24px; }

/* ==================== ANDROID POPUP ==================== */
.android-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.android-popup-overlay.active { display: flex; }
.android-popup {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    animation: popupSlide 0.3s ease;
}
@keyframes popupSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.android-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.android-popup-close:hover { background: #e0e0e0; color: #333; }
.android-popup-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #b8860b, #d4a017);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    color: #fff;
}
.android-popup h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}
.android-popup p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.android-popup .btn { margin: 4px; }
.popup-dismiss {
    display: block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #aaa;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}
.popup-dismiss:hover { color: #666; }

/* ==================== CHECKOUT MODAL ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: popupSlide 0.3s ease;
}
.modal h2 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-size: 1.5rem;
}
.modal p { color: #777; margin-bottom: 28px; line-height: 1.6; }
.modal .btn { margin: 4px; }

/* ==================== FOOTER ==================== */
.footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 60px 24px 0;
}
.footer-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 12px;
    color: #888;
}
.footer h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer ul a:hover { color: #b8860b; }
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    color: #555;
    font-size: 0.85rem;
}

/* ==================== ADMIN ==================== */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 250px;
    background: #1a1a2e;
    color: #fff;
    padding: 24px 0;
    flex-shrink: 0;
}
.admin-sidebar .logo-wrap {
    padding: 0 24px 24px;
    border-bottom: 1px solid #2a2a3e;
}
.admin-sidebar .logo-wrap a {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.admin-sidebar nav { padding: 16px 0; }
.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: #888;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
    background: rgba(184,134,11,0.1);
    color: #b8860b;
}
.admin-content { flex: 1; padding: 32px; background: #f6f7fb; }
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.admin-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #2c2c2c;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #eee;
}
.stat-card .number { font-size: 2.2rem; font-weight: 700; color: #b8860b; }
.stat-card .label { color: #999; font-size: 0.85rem; margin-top: 4px; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
}
.admin-table th {
    background: #f8f9fc;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.admin-table td { padding: 14px 18px; border-top: 1px solid #f0f0f0; font-size: 0.9rem; }
.admin-table tr:hover td { background: #fafafa; }

.admin-form {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #eee;
    max-width: 600px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #b8860b;
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.login-box {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.login-box h1 {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    margin-bottom: 28px;
    color: #2c2c2c;
}
.login-box .error {
    background: #fde8e8;
    color: #c0392b;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
}
.login-box .btn { width: 100%; padding: 14px; font-size: 0.95rem; }

.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: #d4edda; color: #155724; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 60px 20px 70px; }
    .gift-detail { grid-template-columns: 1fr; gap: 30px; }
    .nav { gap: 16px; }
    .nav a { font-size: 0.8rem; }
    .admin-sidebar { display: none; }
    .trust-bar-inner { gap: 24px; }
    .gift-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .footer-inner { grid-template-columns: 1fr; }
    .cart-item { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .header-inner { height: 60px; }
    .logo { font-size: 1.4rem; }
    .nav { gap: 10px; }
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
}
