/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');

/* Core Styling & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0f111a; 
    color: #e4e6eb;
    padding-bottom: 60px;
    overflow-x: hidden;
}

/* Elegant Heading Typography */
h1, h2, h3, .about-main-title, .statement-title, .catalog-title, .product-name {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Header & Logo Layout */
header {
    background-color: #161925;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #25293a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.site-logo {
    max-height: 250px;
    max-width: 100%;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 5px;
    white-space: nowrap;
}

.nav-link {
    color: #b0b3b8;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #dfb76c;
}

.nav-link.active-link {
    color: #dfb76c;
    border-bottom-color: #dfb76c;
}

/* Catalog Container */
.catalog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.catalog-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

#search-bar {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    background-color: #161925;
    border: 1px solid #25293a;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    text-align: center;
}

#search-bar:focus {
    outline: none;
    border-color: #dfb76c;
}

.view-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #dfb76c;
    border: none;
    border-radius: 8px;
    color: #0f111a;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.view-order-btn:hover {
    background-color: #cba358;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #161925;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #25293a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(223, 183, 108, 0.1);
    border-color: #3a3f58;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #0f111a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #25293a;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contact-link-wrapper {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-link-wrapper:hover {
    background-color: #1e2233;
    transform: translateX(10px);
    border-left: 3px solid #dfb76c;
}

.contact-link-wrapper:active {
    transform: scale(0.98);
    background-color: #25293a;
}

.faq-answer-container {
    padding-left: 25px;
    margin-top: 5px;
}

.faq-answer {
    padding-left: 25px;
    margin-top: 10px; /* Gives space below the question */
}

/* This adds a clear break between the question and the answer text */
.statement-text br {
    display: block;
    margin-bottom: 8px; /* Adjust this value to increase/decrease the gap */
    content: "";
}

.product-name { font-size: 1.25rem; margin-bottom: 10px; color: #ffffff; }
.product-details { font-size: 0.9rem; color: #b0b3b8; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }

.stock-status { font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; }
.in-stock { color: #4def8a; }
.low-stock { color: #ff4a5a; }
.out-of-stock { color: #8a8d93; }

.product-price { font-size: 1.4rem; font-weight: 700; color: #dfb76c; margin-bottom: 12px; }

.add-order-btn {
    background: #dfb76c; color: #0f111a; border: none;
    padding: 10px; border-radius: 4px; cursor: pointer;
    font-weight: bold; margin-top: 15px; width: 100%;
    transition: background 0.2s;
}
.add-order-btn:hover { background: #cba358; }

/* Drawer & Modal styles are preserved below */
.order-drawer { position: fixed; right: -100%; top: 0; width: 100%; max-width: 400px; height: 100%; background: #161925; border-left: 2px solid #dfb76c; transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1); padding: 20px; z-index: 1000; display: flex; flex-direction: column; overflow-y: auto; align-items: center; text-align: center; }
.order-drawer.open { right: 0; }
.drawer-header { display: flex; justify-content: center; margin-bottom: 25px; align-items: center; width: 100%; position: relative; }
.drawer-header h3 { color: #ffffff; font-size: 1.4rem; letter-spacing: 0.5px; }
.drawer-header button { background: none; border: none; color: #8a8d93; font-size: 1.4rem; cursor: pointer; position: absolute; right: 5px; }
#order-items { width: 100%; flex-grow: 1; overflow-y: auto; margin-bottom: 15px; display: block; padding: 0; }
.empty-msg { text-align: center; color: #8a8d93; margin-top: 50px; font-style: italic; font-size: 1.1rem; }
.drawer-item-row { display: flex; justify-content: space-between; align-items: center; background-color: #0f111a; padding: 12px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #25293a; width: 100%; }
.item-meta { display: flex; flex-direction: column; gap: 4px; text-align: left; max-width: 60%; }
.item-name-label { font-weight: 600; font-size: 0.95rem; color: #ffffff; }
.item-price-label { color: #dfb76c; font-size: 0.9rem; font-weight: 700; }
.quantity-controller { display: flex; align-items: center; background-color: #161925; border: 1px solid #25293a; border-radius: 20px; padding: 3px; }
.qty-btn { background-color: #25293a; border: none; color: #ffffff; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 1rem; font-weight: bold; display: flex; justify-content: center; align-items: center; transition: background 0.2s; }
.qty-btn:hover { background-color: #dfb76c; color: #0f111a; }
.qty-number { font-weight: bold; min-width: 30px; text-align: center; font-size: 0.95rem; color: #ffffff; }
.subtotal-display-box { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 15px 5px; border-top: 1px dashed #25293a; }
.subtotal-title { font-weight: 600; color: #e4e6eb; font-size: 1.1rem; }
.subtotal-amount { font-size: 1.5rem; font-weight: 700; color: #dfb76c; }
.drawer-actions, .contact-actions { width: 100%; display: flex; flex-direction: column; align-items: center; }
.copy-btn { width: 100%; padding: 12px; background: #dfb76c; color: #0f111a; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.copy-btn:hover { background: #cba358; }
.contact-actions { padding-top: 15px; border-top: 1px solid #25293a; }
.contact-prompt { font-size: 0.85rem; color: #8a8d93; margin-bottom: 12px; }
.whatsapp-btn, .messenger-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; margin-bottom: 10px; border-radius: 6px; text-decoration: none; font-weight: bold; font-size: 0.95rem; transition: 0.3s; }
.whatsapp-btn { background: #25D366; color: #fff; }
.whatsapp-btn:hover { background: #1ebd5d; }
.messenger-btn { background: #0084FF; color: #fff; }
.messenger-btn:hover { background: #0073e6; }
.quickview-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 2000; }
.quickview-modal.active { opacity: 1; pointer-events: auto; }
.modal-content { position: relative; max-width: 90%; max-height: 85%; background: #161925; border: 2px solid #dfb76c; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s ease; display: flex; align-items: center; justify-content: center; }
.quickview-modal.active .modal-content { transform: scale(1); }
#modal-img { max-width: 100%; max-height: 80vh; display: block; object-fit: contain; }
.modal-close { position: absolute; top: 25px; right: 25px; background: rgba(22, 25, 37, 0.9); color: #dfb76c; border: 1px solid #dfb76c; border-radius: 50%; width: 40px; height: 40px; font-size: 1.2rem; font-weight: bold; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.2s; z-index: 2100; }
.modal-close:hover { background: #dfb76c; color: #0f111a; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(15, 17, 26, 0.7); color: #dfb76c; border: 1px solid #dfb76c; width: 45px; height: 45px; font-size: 1.8rem; font-weight: bold; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; z-index: 5; user-select: none; }
.slider-arrow:hover { background: #dfb76c; color: #0f111a; }
.prev-arrow { left: 15px; }
.next-arrow { right: 15px; }
.about-hero { position: relative; width: 100%; min-height: 50vh; background: linear-gradient(135deg, #161925 0%, #0f111a 100%); display: flex; align-items: center; padding: 40px 20px; overflow: hidden; border-bottom: 1px solid #25293a; }
.about-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at right, rgba(223, 183, 108, 0.05) 0%, transparent 70%); z-index: 1; }
.about-hero-content { position: relative; z-index: 2; max-width: 650px; width: 100%; text-align: center; margin: 0 auto; }
.rating-stars { display: flex; align-items: center; justify-content: center; gap: 4px; color: #dfb76c; font-size: 0.85rem; margin-bottom: 20px; }
.trust-badge { color: #e4e6eb; margin-left: 10px; font-size: 0.9rem; letter-spacing: 0.5px; }
.about-main-title { font-size: 2.8rem; font-weight: 700; color: #ffffff; line-height: 1.2; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.about-hero-tagline { font-size: 1.05rem; line-height: 1.6; color: #b0b3b8; margin-bottom: 30px; }
.about-cta-btn { display: inline-block; background-color: #dfb76c; color: #0f111a; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: bold; font-size: 0.95rem; transition: background-color 0.2s ease, transform 0.2s ease; }
.about-cta-btn:hover { background-color: #ffffff; transform: translateY(-2px); }
.story-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.story-gold-subtitle { color: #dfb76c; text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; display: block; margin-bottom: 25px; }
.brand-card { background: linear-gradient(145deg, #161925, #11131c); border-left: 3px solid #dfb76c; border-radius: 4px 12px 12px 4px; padding: 25px; margin-bottom: 20px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }
.statement-title { font-size: 1.2rem; color: #ffffff; margin-bottom: 10px; letter-spacing: 1px; font-weight: 700; }
.statement-text { font-size: 0.95rem; line-height: 1.65; color: #b0b3b8; }
.story-image-block { display: flex; justify-content: center; align-items: center; width: 100%; }
.editorial-frame { position: relative; display: inline-block; max-width: 100%; }
.editorial-frame::before { content: ''; position: absolute; top: 12px; left: 12px; width: 100%; height: 100%; border: 2px solid #dfb76c; border-radius: 24px 4px 24px 4px; z-index: 1; pointer-events: none; }
.story-display-img { position: relative; z-index: 2; width: 100%; max-width: 400px; height: auto; object-fit: cover; border-radius: 24px 4px 24px 4px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); }
@media (max-width: 768px) { header { padding: 15px; } .logo-container { min-height: 70px; } .site-logo { max-height: 80px; } .site-nav { gap: 20px; } .nav-link { font-size: 0.95rem; } .story-grid { grid-template-columns: 1fr; gap: 40px; } .about-main-title { font-size: 2.2rem; } .order-drawer { max-width: 100%; border-left: none; } }

/* Drawer Collapsible Styles */
.collapsible-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0;
    margin-bottom: 10px;
}

.collapsible-header h3 {
    font-size: 0.9rem;
    color: #e4e6eb;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.toggle-icon { color: #dfb76c; font-size: 1.2rem; }

#shipping-content {
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 12px;
}