/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLESHEET FOR REGAL EQUUS
   Colors: Gold (#d4af37), Deep Dark Navy (#0a1128), Black (#03050c)
   ========================================================================== */

/* Variables & Base resets */
:root {
    --bg-primary: #03050c;
    --bg-secondary: #0a1128;
    --bg-card: rgba(15, 24, 55, 0.6);
    --gold-primary: #d4af37;
    --gold-hover: #e5c158;
    --gold-dark: #aa7c11;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-color-hover: rgba(212, 175, 55, 0.5);
    
    --font-brand: 'Cinzel', Georgia, serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-light);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

ul {
    list-style: none;
}

/* Utility Containers & Grids */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.align-center {
    align-items: center;
}

/* Common Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}

.title-divider {
    width: 80px;
    height: 2px;
    background-color: var(--gold-primary);
    margin: 20px auto 0;
    position: relative;
}

.title-divider::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--gold-primary);
    border-radius: 50%;
}

.title-divider-left {
    width: 80px;
    height: 2px;
    background-color: var(--gold-primary);
    margin: 20px 0;
    position: relative;
}

.title-divider-left::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--gold-primary);
    border-radius: 50%;
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-gold-outline:hover {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header & Navbar */
#main-header {
    height: var(--header-height);
    background-color: rgba(3, 5, 12, 0.9);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    height: 70px;
    background-color: rgba(3, 5, 12, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
    line-height: 1;
}

.company-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 5px;
    transition: var(--transition-smooth);
}

.action-btn:hover {
    color: var(--gold-primary);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-menu-btn {
    display: none;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: linear-gradient(rgba(3, 5, 12, 0.6), rgba(3, 5, 12, 0.9)), url('../images/baron_noir.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-primary) 95%);
    z-index: 1;
}

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

.hero-title {
    font-family: var(--font-brand);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gold-primary);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-scroll {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: block;
    position: relative;
}

.mouse-scroll::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* Brand Story Section */
.story-grid {
    gap: 60px;
}

.story-content h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: justify;
}

.partnership-badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-top: 30px;
}

.partnership-badge i {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-top: 3px;
}

.partnership-badge strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.partnership-badge p {
    margin: 0;
    font-size: 0.85rem;
}

.story-image-area {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 15px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

.story-img {
    width: 100%;
    max-width: 450px;
    display: block;
    filter: grayscale(20%) brightness(90%);
    transition: var(--transition-smooth);
}

.story-img:hover {
    filter: grayscale(0%) brightness(100%);
}

.experience-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-card .num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.experience-card .txt {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Product Collection Section */
.product-grid {
    margin-top: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-glow);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #000;
    border-bottom: 1px solid var(--border-color);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    letter-spacing: 1px;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: var(--transition-smooth);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.btn-card-action {
    background: rgba(3, 5, 12, 0.85);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-action:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-family {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    margin-bottom: 20px;
}

.product-price-row .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.product-price-row .volume {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-buttons {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
}

.product-buttons .btn {
    padding: 10px 15px;
    font-size: 0.75rem;
}

/* Partnership Details Section */
.factory-details h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.factory-details p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features-list li i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.features-list li strong {
    color: var(--text-light);
}

.factory-visuals {
    display: flex;
    justify-content: center;
}

.factory-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.f-badge-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 25px;
    transition: var(--transition-smooth);
}

.f-badge-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.f-badge-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.f-badge-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.f-badge-card p {
    font-size: 0.75rem;
    margin: 0;
}

/* Corporate Section */
.corporate-container {
    display: flex;
    justify-content: center;
}

.corporate-card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-primary);
    padding: 40px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.corporate-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--border-color);
    pointer-events: none;
}

.corporate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.corporate-header i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.corporate-header h3 {
    font-size: 1.5rem;
    flex-grow: 1;
    margin-left: 15px;
}

.status-badge {
    background-color: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid #2ed573;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.corporate-body {
    display: grid;
    row-gap: 18px;
}

.info-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    color: var(--gold-primary);
    width: 16px;
    text-align: center;
}

.info-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.highlight-value {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Sidebar Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1050;
    visibility: hidden;
    transition: visibility 0.4s;
}

.cart-drawer.open {
    visibility: visible;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 5, 12, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s;
}

.cart-drawer.open .cart-overlay {
    opacity: 1;
}

.cart-content {
    position: absolute;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--gold-primary);
    box-shadow: -10px 0 35px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.open .cart-content {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-btn:hover {
    color: var(--gold-primary);
}

.cart-body {
    flex-grow: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart-msg {
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.empty-cart-msg i {
    font-size: 3rem;
    color: var(--border-color);
}

.empty-cart-msg p {
    font-size: 0.9rem;
}

/* Cart Item Card */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.cart-item-info .item-price {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    margin-top: 8px;
    width: fit-content;
}

.quantity-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 0.75rem;
}

.quantity-btn:hover {
    color: var(--gold-primary);
}

.quantity-input {
    width: 30px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.8rem;
    height: 25px;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.remove-item-btn:hover {
    color: #ff4757;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-primary);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cart-total-row #cart-total-price {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Modals Structure */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 5, 12, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 20px var(--gold-glow);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--gold-primary);
}

/* Product Quick View Details */
.quick-view-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 30px;
}

.qv-img-container {
    border: 1px solid var(--border-color);
}

.qv-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.qv-title {
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.qv-family {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.qv-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 15px;
}

.qv-details-list {
    margin-bottom: 25px;
}

.qv-detail-item {
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.qv-detail-item strong {
    color: var(--text-light);
    display: inline-block;
    width: 140px;
}

.qv-detail-item span {
    color: var(--text-muted);
}

.qv-pitch-box {
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 2px solid var(--gold-primary);
    padding: 15px;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-light);
}

.qv-buttons {
    display: flex;
    gap: 15px;
}

/* Checkout Form Modal */
.checkout-form-modal {
    max-width: 600px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--gold-primary);
}

.modal-header p {
    font-size: 0.8rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-group .required {
    color: #ff4757;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 8px var(--gold-glow);
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.order-summary-box {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 25px;
}

.order-summary-box h4 {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
}

.checkout-total-row .free-shipping {
    color: #2ed573;
    font-weight: 500;
}

.checkout-total-row.final-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.checkout-total-row.final-price #checkout-total-val {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

.payment-method-box {
    margin-bottom: 25px;
}

.radio-label {
    display: flex;
    gap: 15px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-primary);
    padding: 15px 20px;
    cursor: pointer;
}

.radio-label input {
    margin-top: 4px;
    accent-color: var(--gold-primary);
}

.radio-label strong {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.radio-label p {
    font-size: 0.75rem;
    margin: 0;
}

/* Success Card Modal */
.success-card-modal {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.success-card-modal h3 {
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.success-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border: 1px dashed var(--border-color);
    margin: 20px 0;
}

.order-details-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: left;
    margin-bottom: 25px;
}

.order-details-card h4 {
    font-size: 0.85rem;
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.order-details-card p {
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.order-details-card p strong {
    color: var(--text-light);
}

/* Admin Panel (Hidden Setting for Telegram Bot Setup) */
.admin-panel-minimized {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#admin-panel-toggle {
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

#admin-panel-toggle:hover {
    transform: rotate(45deg);
    background-color: var(--gold-primary);
    color: var(--bg-primary);
}

.admin-panel-content {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 320px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.admin-panel-minimized.open .admin-panel-content {
    display: block;
}

.admin-panel-content h4 {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.admin-note {
    font-size: 0.7rem;
    margin-bottom: 15px;
}

.admin-panel-content .form-group {
    margin-bottom: 12px;
}

.admin-panel-content label {
    font-size: 0.75rem;
}

.admin-panel-content input {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.btn-xs {
    padding: 8px 15px;
    font-size: 0.7rem;
}

#admin-status-msg {
    font-size: 0.75rem;
    margin-top: 10px;
    font-weight: 500;
}

/* Footer styles */
#main-footer {
    background-color: #020308;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    object-fit: cover;
    margin-bottom: 15px;
}

.footer-brand-title {
    font-family: var(--font-brand);
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.links-col h4,
.contact-col h4 {
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.links-col h4::after,
.contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--gold-primary);
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.links-col a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.contact-info-list li {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-list li i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-info-list li strong {
    color: var(--text-light);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 0.75rem;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col.contact-col {
        grid-column: span 2;
    }
    
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    #mobile-menu-btn {
        display: block;
    }
    
    #navbar {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 40px;
        border-top: 1px solid var(--border-color);
    }
    
    #navbar.open {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .experience-card {
        left: 0;
        bottom: -20px;
    }
}

@media (max-width: 576px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col.contact-col {
        grid-column: span 1;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .qv-buttons {
        flex-direction: column;
    }
    
    .corporate-card {
        padding: 20px;
    }
}
