@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0b1a33;
    --primary-light: #162c50;
    --gold: #d4af37;
    --gold-dark: #aa841c;
    --gold-light: #f3e5ab;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa841c 100%);
    --bg-main: #050d1a;
    --bg-card: rgba(11, 26, 51, 0.65);
    --bg-glass: rgba(11, 26, 51, 0.75);
    --text-color: #ffffff;
    --text-muted: #a0aec0;
    --border: rgba(212, 175, 55, 0.18);
    --border-hover: rgba(212, 175, 55, 0.45);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(212, 175, 55, 0.15);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border: 2px solid var(--bg-main);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, #0b1a33 0%, #050d1a 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Pattern Motif Islami Halus */
.islamic-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.02;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0l10 30h30L55 50l10 30-25-20-25 20 10-30L0 30h30z' fill='%23d4af37' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background: rgba(11, 26, 51, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--gold);
    background-color: var(--primary-light);
    border-color: var(--border);
}

.nav-links a.active {
    background: var(--gold-gradient);
    color: #0b1a33;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    background: relative;
    padding: 6rem 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(11, 26, 51, 0.5), rgba(5, 13, 26, 0.95)),
        url('assets/camp.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 50%, #f3e5ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-gold {
    background: var(--gold-gradient);
    color: #0b1a33;
    font-weight: 600;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
}

.btn-cta-outline {
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    border: 1px solid var(--gold);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Chips Kategori */
.category-container {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
}

.category-chips {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: rgba(11, 26, 51, 0.4);
    border-radius: 50px;
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    max-width: fit-content;
    margin: 0 auto;
}

.chip {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.chip:hover {
    color: var(--gold);
    border-color: var(--border);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.chip.active {
    background: var(--gold-gradient);
    color: #0b1a33;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Section Video Youtube */
.video-section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--gold);
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    max-width: 800px;
    margin: 0 auto;
    transition: var(--transition);
}

.video-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
}

/* Grid list produk */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: var(--radius);
    pointer-events: none;
    transition: var(--transition);
}

.product-card:hover {
    transform: scale(1.025);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.product-card:hover::before {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #0b1a33;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 26, 51, 0.85);
    color: var(--gold-light);
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    z-index: 5;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--gold-light);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.price-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.promo-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.75rem;
}

.btn-detail {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border);
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-detail:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-order-wa {
    background: var(--gold-gradient);
    color: #0b1a33;
    border: none;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
}

.btn-order-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    grid-column: 1 / -1;
    backdrop-filter: blur(12px);
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Modal Detail Produk */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 26, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #0b1a33;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 90%;
    max-width: 650px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.btn-close-modal:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
}

.modal-img-container {
    width: 100%;
    height: 300px;
    background-color: #050d1a;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2rem;
}

.modal-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.modal-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.modal-original-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.modal-promo-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.modal-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

/* Footer Section */
footer {
    background: #040912;
    border-top: 1px solid var(--border);
    color: #cbd5e1;
    padding: 4rem 1.5rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.address-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.address-text i {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 0.25rem;
}

/* WA Button Group */
.wa-button-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wa-card-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.wa-card-btn i {
    font-size: 1.5rem;
    color: #25d366;
}

.wa-card-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.05);
}

/* Rekening Resmi Card */
.bank-card {
    background: rgba(11, 26, 51, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bank-logo {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-no-rek {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin: 0.5rem 0;
}

.bank-an {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.btn-copy {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-copy:hover {
    background: var(--gold);
    color: #0b1a33;
}

/* Social Media & Copyright */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: #0b1a33;
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}


/* ==========================================================================
   FORM & CHECKOUT STYLES
   ========================================================================== */
.order-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-summary, 
.order-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.product-summary h3, 
.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
    position: relative;
}

.product-summary h3::after, 
.form-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.product-summary-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.product-summary-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    background: var(--primary-light);
    border: 1px solid var(--border);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: rgba(22, 44, 80, 0.8);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Alert System */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.btn-order {
    background: var(--gold-gradient);
    color: #0b1a33;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
}

/* ==========================================================================
   ADMIN DASHBOARD & LOGIN STYLES
   ========================================================================== */
/* Login Screen */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: radial-gradient(circle at center, rgba(11, 26, 51, 0.8) 0%, #050d1a 100%);
    position: relative;
    z-index: 10;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0b1a33;
    border: none;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
}

/* Admin Dashboard Layout */
.admin-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: #050d1a;
}

.admin-sidebar {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.admin-logo {
    padding: 2rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--gold);
}

.sidebar-menu li a.logout {
    margin-top: 2rem;
}

.sidebar-menu li a.logout:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.admin-main {
    flex-grow: 1;
    padding: 3rem;
    height: 100vh;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Admin Tables */
.table-responsive {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, 
.admin-table td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.admin-table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    color: var(--text-color);
    background: rgba(11, 26, 51, 0.4);
    border-bottom: 1px solid var(--border);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(11, 26, 51, 0.6);
}

.actions-cell {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-danger:hover {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   RESPONSIVE GRID & BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .admin-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    .admin-sidebar {
        width: 100%;
        height: auto;
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }
    .admin-logo {
        padding: 1.5rem;
        justify-content: center;
    }
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
        justify-content: center;
    }
    .sidebar-menu li a {
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    .sidebar-menu li a.logout {
        margin-top: 0;
    }
    .sidebar-menu li a:hover,
    .sidebar-menu li a.active {
        border-left-color: transparent;
        border-bottom-color: var(--gold);
    }
    .admin-main {
        padding: 2rem 1.5rem;
        height: auto;
        overflow-y: visible;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-img-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .nav-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .product-image-container {
        height: 200px;
    }
    .product-info {
        padding: 1rem;
    }
    .product-name {
        font-size: 1.05rem;
    }
    .promo-price {
        font-size: 1.2rem;
    }
    .product-actions {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .product-summary-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

