/* ============================================================
   Amplang Udangku — Main Stylesheet
   Palette: Cream #FAF6F0 | Warm White #FFFFFF | 
            Ocean #1A5276 | Amber #E67E22 | Taupe #8D7B68
   ============================================================ */

:root {
    --cream:       #FAF6F0;
    --warm-white:  #FFFFFF;
    --ocean:       #1A5276;
    --ocean-dark:  #154360;
    --ocean-light: #2980B9;
    --amber:       #E67E22;
    --amber-dark:  #CA6F1E;
    --amber-light: #F5CBA7;
    --taupe:       #8D7B68;
    --taupe-light: #BDC3C7;
    --text-dark:   #1C2833;
    --text-mid:    #4A4A4A;
    --text-light:  #7F8C8D;
    --border:      #E8E0D5;
    --shadow-sm:   0 2px 12px rgba(26,82,118,0.07);
    --shadow-md:   0 8px 32px rgba(26,82,118,0.12);
    --shadow-lg:   0 20px 60px rgba(26,82,118,0.16);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --text-light: #555;
    --border: #ddd;
    --cream: #FAF6F0;
    --ocean: #1A5276;
    --amber: #E67E22;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.2;
    color: var(--ocean-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---- Navbar ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 0;
    background: linear-gradient(to bottom, rgba(10,25,40,0.65) 0%, transparent 100%);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 35, 50, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
}

.navbar.scrolled .logo { color: white !important; }
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85) !important; }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--amber) !important; }
.navbar.scrolled .nav-toggle span { background: white; }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--warm-white);
    transition: color var(--transition);
}

.navbar.scrolled .logo { color: var(--ocean-dark); }

.logo-icon { font-size: 1.5rem; }
.logo-text strong { color: var(--amber); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 40px;
    color: rgba(255,255,255,0.9);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.navbar.scrolled .nav-links a { color: var(--text-mid); }

.nav-links a:hover,
.nav-links a.active {
    color: var(--amber);
    background: rgba(230,126,34,0.1);
}

.btn-nav {
    background: var(--amber) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.btn-nav:hover {
    background: var(--amber-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230,126,34,0.4) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--amber);
    color: white;
    border-color: var(--amber);
}
.btn-primary:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,126,34,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ocean);
    border-color: var(--ocean);
}
.btn-outline:hover {
    background: var(--ocean);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,82,118,0.3);
}

.btn-white {
    background: white;
    color: var(--ocean-dark);
    border-color: white;
}
.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-danger { background: #E74C3C; color: white; border-color: #E74C3C; }
.btn-danger:hover { background: #C0392B; border-color: #C0392B; }
.btn-success { background: #27AE60; color: white; border-color: #27AE60; }
.btn-success:hover { background: #1E8449; border-color: #1E8449; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-light);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 50%, #1F618D 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,126,34,0.2) 0%, transparent 70%);
    right: -100px; top: -100px;
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-content { animation: fadeInLeft 0.8s ease forwards; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-title span { color: var(--amber); font-style: italic; }

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 440px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-img-frame {
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(8px);
    overflow: hidden;
    padding: 0;
}

.hero-img-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px dashed rgba(230,126,34,0.4);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.hero-emoji {
    font-size: 140px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

/* ---- Product Cards ---- */
.products-section { padding: 100px 0; background: var(--warm-white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-img {
    height: 220px;
    background: linear-gradient(135deg, var(--cream) 0%, #EDE0D4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--amber);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 40px;
    letter-spacing: 0.05em;
}

.product-card-body { padding: 24px; }

.product-card-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ocean-dark);
    font-family: 'Cormorant Garamond', serif;
}

.product-card-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ocean);
}

.product-price-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

/* ---- Features Section ---- */
.features-section { padding: 100px 0; background: var(--cream); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--amber-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '🦐';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header h1 { color: white; font-size: clamp(2.4rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; font-family: 'DM Sans', sans-serif; }

/* ---- Product Detail ---- */
.product-detail { padding: 80px 0; }

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-img-frame {
    background: linear-gradient(135deg, var(--cream), #EDE0D4);
    border-radius: var(--radius-lg);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.detail-tag { margin-bottom: 12px; }
.detail-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
.detail-price { font-size: 2.5rem; color: var(--ocean); font-family: 'Cormorant Garamond', serif; font-weight: 600; margin-bottom: 28px; }
.detail-desc { color: var(--text-mid); line-height: 1.85; margin-bottom: 36px; font-size: 1rem; }

.detail-meta {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.detail-meta-item { text-align: center; }
.detail-meta-val { font-size: 1.1rem; font-weight: 600; color: var(--ocean); display: block; }
.detail-meta-key { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ---- About Page ---- */
.about-hero { padding: 80px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-col {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.about-img-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 160px; height: 160px;
    background: var(--amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: var(--shadow-md);
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.about-content p { color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }

.about-values { padding: 80px 0; background: var(--warm-white); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-card {
    padding: 32px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--amber);
    transition: all var(--transition);
}
.value-card:hover { transform: translateX(4px); background: white; box-shadow: var(--shadow-sm); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); }

/* ---- Contact Page ---- */
.contact-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px; height: 44px;
    background: var(--amber-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 { font-size: 0.85rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 500; margin-bottom: 2px; }
.contact-item p { color: var(--text-dark); font-size: 0.95rem; margin: 0; }

/* ---- Forms ---- */
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--ocean-light);
    background: white;
    box-shadow: 0 0 0 4px rgba(41,128,185,0.1);
}

.form-control::placeholder { color: var(--taupe-light); }

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

.form-error { font-size: 0.82rem; color: #E74C3C; margin-top: 6px; display: flex; align-items: center; gap: 4px; }

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #D5F5E3; color: #1E8449; border: 1px solid #A9DFBF; }
.alert-error   { background: #FADBD8; color: #C0392B; border: 1px solid #F1948A; }

/* ---- Admin ---- */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 260px;
    background: var(--ocean-dark);
    color: white;
    padding: 28px 0;
    flex-shrink: 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.admin-logo {
    padding: 0 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.admin-logo .logo { color: white; font-size: 1rem; }
.admin-logo small { color: rgba(255,255,255,0.5); font-size: 0.75rem; display: block; margin-top: 4px; padding-left: 34px; }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
    border-right: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: white;
    background: rgba(255,255,255,0.08);
    border-right-color: var(--amber);
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
    background: var(--cream);
    min-height: 100vh;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-topbar h1 { font-size: 1.8rem; }

.admin-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header h2 { font-size: 1.2rem; }

.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th {
    background: var(--cream);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    color: var(--text-dark);
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream); }

.td-img {
    width: 52px; height: 52px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.ocean { background: rgba(26,82,118,0.1); }
.stat-icon.amber { background: rgba(230,126,34,0.1); }
.stat-icon.green { background: rgba(39,174,96,0.1); }

.stat-num { font-size: 2rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--ocean-dark); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* ---- Login Page ---- */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.login-header { text-align: center; margin-bottom: 36px; }
.login-header .logo { justify-content: center; color: var(--ocean-dark); font-size: 1.1rem; margin-bottom: 12px; }
.login-header h1 { font-size: 1.8rem; }
.login-header p { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; }

/* ---- Footer ---- */
.footer {
    background: var(--ocean-dark);
    color: rgba(255,255,255,0.8);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 280px; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.social-links a:hover { background: var(--amber); transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; color: white; }

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    display: block;
    padding: 6px 0;
    transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--amber); }

.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; line-height: 1.6; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.align-center { align-items: center; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 32px;
}
.breadcrumb a { color: var(--ocean); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--taupe-light); }

.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-light);
}
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: 8px; }

/* ---- Animations ---- */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---- Scroll Delay ---- */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-img-frame { width: 340px; height: 340px; }
}

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-img-frame { width: 260px; height: 260px; }
    .hero-emoji { font-size: 100px; }

    .detail-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .about-img-accent { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        gap: 4px;
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--text-dark) !important; border-radius: var(--radius-sm); }

    .nav-toggle { display: flex; }

    .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; padding: 20px; }

    .stat-cards { grid-template-columns: 1fr 1fr; }
    .form-card { padding: 24px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
}