/**
 * ============================================================
 *  INSTANT PRINT - MODERN STYLESHEET v2.0
 *  Animations | Glassmorphism | Gradients | Micro-interactions
 *  Colors: Navy #1B2A4A + Gold #F5A623
 * ============================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ========== CSS Variables ========== */
:root {
    --navy: #1B2A4A;
    --navy-dark: #0F1B33;
    --navy-darker: #080F1E;
    --navy-light: #2A3F6B;
    --navy-lighter: #3A5685;
    --gold: #F5A623;
    --gold-bright: #FFB840;
    --gold-dark: #D9910A;
    --gold-light: #FFC94D;
    --gold-glow: rgba(245, 166, 35, 0.3);
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-600: #495057;
    --gray-700: #343A40;
    --gray-800: #212529;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 32px rgba(245, 166, 35, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ========== Keyframe Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(245, 166, 35, 0); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.8); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(245, 166, 35, 0.3); }
    50% { border-color: rgba(245, 166, 35, 0.8); }
}
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink {
    50% { border-color: transparent; }
}
@keyframes particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.main-content { flex: 1; }

/* ========== Animation Utility Classes ========== */
.anim-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.anim-fade-left {
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.anim-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.anim-scale-in {
    opacity: 0;
    animation: scaleIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ========== Flash Messages ========== */
.flash-message {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 18px 28px;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    z-index: 9999;
    animation: slideInDown 0.5s ease, fadeIn 0.5s ease;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    font-size: 14px;
}
.flash-success { background: linear-gradient(135deg, #28A745, #20c997); }
.flash-error { background: linear-gradient(135deg, #DC3545, #f44); }
.flash-warning { background: linear-gradient(135deg, #FFC107, #ff9800); color: var(--gray-800); }
.flash-info { background: linear-gradient(135deg, #17A2B8, #00bcd4); }
.flash-close {
    margin-left: 16px;
    cursor: pointer;
    font-size: 20px;
    float: right;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition);
}
.flash-close:hover { opacity: 1; transform: scale(1.2); }

/* ========== Header ========== */
.main-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header-top { padding: 14px 0; }
.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-bounce);
}
.logo:hover { transform: scale(1.03); }
.logo img { height: 52px; width: auto; }

/* Search Bar */
.search-bar { flex: 1; max-width: 440px; }
.search-bar form {
    display: flex;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--gray-50);
}
.search-bar form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
    background: var(--white);
    transform: translateY(-1px);
}
.search-bar input {
    flex: 1;
    padding: 12px 22px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--gray-700);
    background: transparent;
    font-family: var(--font-body);
}
.search-bar input::placeholder { color: var(--gray-400); }
.search-bar button {
    padding: 12px 20px;
    background: none;
    color: var(--gray-500);
    font-size: 16px;
    transition: var(--transition);
}
.search-bar button:hover { color: var(--gold); transform: scale(1.1); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 22px; }
.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}
.header-action-btn:hover {
    color: var(--navy);
    background: var(--gray-50);
    transform: translateY(-2px);
}
.header-action-btn i { font-size: 18px; transition: var(--transition); }
.header-action-btn:hover i { color: var(--gold); }

.cart-btn { position: relative; }
.cart-badge {
    position: absolute;
    top: 2px;
    right: -4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-gold 2s infinite;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
}

/* User Dropdown */
.user-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
}
.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--gray-50), transparent);
    color: var(--navy);
    padding-left: 28px;
}
.dropdown-menu a i { color: var(--gold); font-size: 14px; }

/* ========== Navigation ========== */
.main-nav {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}
.main-nav::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links { display: flex; gap: 4px; }
.nav-links li a {
    display: block;
    padding: 16px 24px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 3px solid transparent;
    position: relative;
    transition: var(--transition);
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--white);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

.btn-quote {
    display: inline-block;
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}
.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
}
.btn-quote:hover::before { left: 100%; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(27, 42, 74, 0.25);
}
.btn-navy:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 42, 74, 0.35);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #c0392b);
    color: var(--white);
    border-color: transparent;
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.15;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.hero-content {
    flex: 1;
    max-width: 560px;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-image {
    flex: 1;
    position: relative;
    animation: floatSlow 6s ease-in-out infinite;
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(245,166,35,0.05));
    border-radius: var(--radius-xl);
    z-index: -1;
    filter: blur(30px);
}
.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 2px solid rgba(245,166,35,0.15);
    transition: var(--transition);
}
.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

/* Floating stats on hero */
.hero-floating-stats {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}
.float-stat {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
    transition: var(--transition-bounce);
    border: 1px solid rgba(245,166,35,0.1);
}
.float-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(245,166,35,0.3);
}
.float-stat .num {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.float-stat .label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ========== Section Styles ========== */
.section { padding: 100px 0; }
.section-alt { background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); }
.section-dark {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title-white {
    color: var(--white);
}
.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ========== Products Grid ========== */
.products-section { background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 1px solid var(--gray-100);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245,166,35,0.2);
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27,42,74,0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.product-card:hover .product-image .overlay {
    opacity: 1;
}
.product-info { padding: 28px; }
.product-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
    transition: var(--transition);
}
.product-card:hover .product-info h3 {
    color: var(--navy);
}
.product-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}
.product-actions { display: flex; gap: 10px; }
.product-actions .btn {
    flex: 1;
    padding: 11px;
    font-size: 13px;
}

/* ========== Product Details ========== */
.product-detail {
    display: flex;
    gap: 56px;
    padding: 56px 0;
}
.product-detail-image {
    flex: 1;
    max-width: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.product-detail-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(245,166,35,0.15), transparent 60%);
    z-index: -1;
    border-radius: calc(var(--radius-lg) + 10px);
}
.product-detail-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-detail-image:hover img {
    transform: scale(1.03);
}
.product-detail-info {
    flex: 1;
}
.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}
.product-detail-info .category-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(245,166,35,0.15);
}
.product-detail-info .description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}
.options-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group label i { color: var(--gold); font-size: 13px; }

.form-control {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-700);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.price-box {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 2px solid rgba(245,166,35,0.15);
    border-radius: var(--radius);
    padding: 24px;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}
.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
}
.price-box .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-box .price-label {
    font-size: 14px;
    color: var(--gray-500);
}
.price-box .price-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Services / Features Grid ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition-bounce);
    border: 2px solid rgba(245,166,35,0.15);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
    border-color: transparent;
}
.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== Cart Page ========== */
.cart-section { padding: 56px 0; }
.cart-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 36px;
}
.cart-empty {
    text-align: center;
    padding: 100px 20px;
    animation: fadeInUp 0.6s ease;
}
.cart-empty i {
    font-size: 72px;
    color: var(--gray-200);
    margin-bottom: 28px;
    display: block;
}
.cart-empty h3 {
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 16px;
}
.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 28px;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.5s ease;
}
.cart-table th {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    padding: 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.cart-table td {
    padding: 22px 18px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
    background: var(--white);
    transition: var(--transition);
}
.cart-table tbody tr:hover td {
    background: var(--gray-50);
}
.cart-table tbody tr {
    transition: var(--transition);
}
.cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cart-product-img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.cart-product:hover .cart-product-img img {
    transform: scale(1.1);
}
.cart-product-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
}
.cart-product-info p {
    font-size: 13px;
    color: var(--gray-500);
}
.qty-input {
    width: 70px;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.qty-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    outline: none;
}
.remove-btn {
    color: var(--danger);
    font-size: 18px;
    background: none;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.1);
}

.cart-summary {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 420px;
    margin-left: auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    animation: fadeInRight 0.5s ease;
}
.cart-summary h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 28px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}
.summary-row.total {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    border-bottom: none;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Checkout Page ========== */
.checkout-section { padding: 56px 0; }
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.checkout-form h3,
.checkout-order h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 28px;
}
.order-review {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}
.order-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    transition: var(--transition);
}
.order-item:hover {
    padding-left: 8px;
}
.order-item:last-child {
    border-bottom: 2px solid var(--navy);
}
.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Auth Pages (Login/Register) ========== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}
.auth-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite;
}
.auth-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite reverse;
}
.auth-box {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    padding: 56px;
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(245,166,35,0.1);
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.auth-box .logo {
    text-align: center;
    margin-bottom: 36px;
}
.auth-box .logo img { height: 64px; transition: var(--transition); }
.auth-box .logo:hover img { transform: scale(1.05); }
.auth-box h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 8px;
}
.auth-box .subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 36px;
}
.auth-form .form-group { margin-bottom: 22px; }
.auth-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: block;
}
.auth-form .form-control { width: 100%; }
.auth-form .btn { width: 100%; margin-top: 10px; }
.auth-links {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: var(--gray-500);
}
.auth-links a {
    color: var(--navy);
    font-weight: 700;
    position: relative;
}
.auth-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.auth-links a:hover::after { width: 100%; }

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
    animation: fadeInUp 0.4s ease;
}
.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #fff);
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.alert-success {
    background: linear-gradient(135deg, #d4edda, #fff);
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* ========== Footer ========== */
.main-footer {
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 100%);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 36px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
.main-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 60%);
    border-radius: 50%;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}
.footer-logo {
    height: 52px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}
.footer-logo:hover { transform: scale(1.05); }
.footer-about p {
    line-height: 1.8;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.7);
}
.footer-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 24px;
}
.footer-col h4 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.footer-links li,
.footer-contact li { margin-bottom: 14px; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}
.footer-contact li {
    display: flex;
    flex-direction: column;
}
.footer-contact li span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-contact a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.footer-contact a:hover { color: var(--gold); }
.footer-info p {
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

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

/* Admin Sidebar */
.admin-sidebar {
    width: 270px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}
.sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-header .logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
.sidebar-header .logo-text span { color: var(--gold); }

.sidebar-nav { padding: 16px 0; }
.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 2px 0;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: linear-gradient(90deg, rgba(245,166,35,0.15), transparent);
    color: var(--white);
    border-left-color: var(--gold);
}
.sidebar-nav li a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: var(--transition);
}
.sidebar-nav li a:hover i,
.sidebar-nav li a.active i {
    color: var(--gold);
    transform: scale(1.1);
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    margin-left: 270px;
    background: linear-gradient(180deg, #f0f2f5 0%, var(--gray-50) 100%);
    min-height: 100vh;
}
.admin-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}
.admin-search { flex: 1; max-width: 400px; }
.admin-search input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--gray-50);
    transition: var(--transition);
    font-family: inherit;
}
.admin-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
    background: var(--white);
}
.admin-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}
.admin-profile .notif-icon {
    position: relative;
    font-size: 18px;
    color: var(--gray-600);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.admin-profile .notif-icon:hover {
    background: var(--gray-100);
    color: var(--gold);
}
.admin-profile .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
}
.admin-profile .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.admin-profile .admin-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-700);
}

.admin-content { padding: 36px; }
.page-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 32px;
}

/* Admin Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}
.stat-card:hover::before {
    transform: scaleX(1);
}
.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Tables */
.admin-table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 36px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.admin-table-container:hover {
    box-shadow: var(--shadow);
}
.admin-table-header {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-100);
}
.admin-table-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-800);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table thead th {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    padding: 18px 28px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.admin-table tbody td {
    padding: 18px 28px;
    border-bottom: 1px solid var(--gray-50);
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
}
.admin-table tbody tr {
    transition: var(--transition);
}
.admin-table tbody tr:hover {
    background: linear-gradient(90deg, var(--gray-50), transparent);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    min-width: 100px;
    transition: var(--transition);
}
.status-completed { background: linear-gradient(135deg, #D4EDDA, #e8f5e9); color: #155724; }
.status-processing, .status-printing { background: linear-gradient(135deg, #CCE5FF, #e3f2fd); color: #004085; }
.status-pending { background: linear-gradient(135deg, #FFF3CD, #fff8e1); color: #856404; }
.status-cancelled { background: linear-gradient(135deg, #F8D7DA, #ffebee); color: #721C24; }
.status-approved { background: linear-gradient(135deg, #D4EDDA, #e8f5e9); color: #155724; }
.status-pending-review { background: linear-gradient(135deg, #E2E3E5, #f5f5f5); color: #383D41; }

/* Quick Actions */
.quick-actions { margin-bottom: 36px; }
.quick-actions h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 24px;
}
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.quick-action-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    cursor: pointer;
    border: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    display: block;
}
.quick-action-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
    border-color: rgba(245,166,35,0.2);
}
.quick-action-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
    transition: var(--transition-bounce);
    display: block;
}
.quick-action-card:hover i {
    transform: scale(1.2) rotate(-5deg);
}
.quick-action-card span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    background: linear-gradient(90deg, var(--gray-50), var(--white));
    padding: 18px 0;
    font-size: 14px;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}
.breadcrumb a {
    color: var(--navy);
    font-weight: 600;
    position: relative;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep {
    margin: 0 10px;
    color: var(--gray-300);
}

/* ========== Contact Page ========== */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}
.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 16px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--gray-50);
    transition: var(--transition);
    border: 1px solid transparent;
}
.contact-detail:hover {
    background: var(--white);
    border-color: rgba(245,166,35,0.2);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}
.contact-detail i {
    font-size: 20px;
    color: var(--gold);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
    font-size: 14px;
    color: var(--gray-500);
}
.contact-detail a:hover { color: var(--gold); }

/* Quote Form */
.quote-form {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 2px solid rgba(245,166,35,0.2);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.quote-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.quote-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 24px;
    position: relative;
}

/* ========== About Page ========== */
.about-hero {
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 80px;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-grid h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 24px;
}
.about-grid h2 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-grid p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 15px;
}
.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: linear-gradient(135deg, rgba(245,166,35,0.1), transparent);
    z-index: -1;
    border-radius: calc(var(--radius-xl) + 12px);
}
.about-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}
.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image:hover img {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.feature-card {
    text-align: center;
    padding: 48px 28px;
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-radius: var(--radius-lg);
    transition: var(--transition-bounce);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card i {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 24px;
    transition: var(--transition-bounce);
    display: block;
}
.feature-card:hover i {
    transform: scale(1.15) rotate(-5deg);
}
.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 14px;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 60%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 60%);
    border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }

/* ========== Artwork Upload Zone ========== */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    position: relative;
    overflow: hidden;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(245,166,35,0.03), rgba(245,166,35,0.01));
    box-shadow: 0 0 0 4px var(--gold-glow);
    transform: translateY(-2px);
}
.upload-zone i {
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition-bounce);
}
.upload-zone:hover i {
    transform: scale(1.1);
}

/* ========== Image Gallery ========== */
.img-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(27,42,74,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .overlay h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}
.gallery-item .overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 4px;
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}
.pagination a:hover {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.pagination .current {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 4px 12px rgba(27,42,74,0.25);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { flex-direction: column; text-align: center; padding: 60px 0; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-image { max-width: 500px; }
    .hero-floating-stats { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .checkout-grid { gap: 36px; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .header-top-inner { flex-wrap: wrap; }
    .search-bar { order: 3; max-width: 100%; flex-basis: 100%; margin-top: 12px; }
    .main-nav { display: none; }
    .main-nav.active { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; padding-top: 60px; }
    .nav-inner { flex-direction: column; }
    .nav-links { flex-direction: column; width: 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .quick-actions-grid { grid-template-columns: 1fr; }
    .checkout-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-detail { flex-direction: column; }
    .product-detail-image { max-width: 100%; }
    .cart-table thead { display: none; }
    .cart-table tbody tr { display: block; margin-bottom: 16px; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
    .cart-table tbody td { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; }
    .cart-table tbody td::before { content: attr(data-label); font-weight: 700; color: var(--gray-700); }
    .admin-sidebar { width: 100%; position: relative; height: auto; }
    .admin-main { margin-left: 0; }
    .admin-layout { flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .features-grid, .services-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
    .hero-image img { height: 300px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .auth-box { padding: 36px 24px; }
    .about-hero h1 { font-size: 36px; }
    .products-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.hidden { display: none; }

/* Glassmorphism card utility */
.glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Gold gradient text */
.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navy gradient text */
.navy-text {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth section divider */
.section-divider {
    height: 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

/* Loading shimmer */
.shimmer {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
