/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg:        #111;
    --color-black:     #000;
    --color-white:     #fff;
    --color-grey-dark: #2a2a2a;
    --color-grey-mid:  #3f3f3f;
    --color-grey-light:#efefef;
    --color-gold:      #c9a56a;
    --color-gold-alt:  #d4af37;
    --color-text-muted:#777;
    --font-display:    'Playfair Display', serif;
    --font-body:       'Montserrat', sans-serif;
    --transition:      0.3s ease;
}

body {
    background: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
}

h1, h2, h3 {
    font-family: var(--font-display);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =============================================
   HEADER
   ============================================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: var(--color-black);
    flex-wrap: wrap;
    gap: 16px;
}

.header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.header nav a {
    color: var(--color-white);
    font-size: 14px;
    margin-left: 25px;
    transition: opacity var(--transition);
}

.header nav a:hover {
    opacity: 0.7;
}

.header .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Search */
.search-box {
    position: relative;
    width: 240px;
}

.search-box input {
    width: 100%;
    height: 28px;
    padding: 0 44px 0 14px;
    border: 1px solid #ccc;
    font-size: 13px;
    background: #424040;
    color: var(--color-white);
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.search-btn svg {
    width: 16px;
    height: 16px;
    stroke: #e4e0e0;
    stroke-width: 1.5;
    fill: none;
}


/* =============================================
   HERO TYPOGRAPHY
   ============================================= */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 54px);
    letter-spacing: 7px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 18px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 4px;
    color: #e5e5e5;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-btn {
    display: inline-block;
    border: 1px solid var(--color-white);
    padding: 14px 34px;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--color-white);
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}


/* =============================================
   CATEGORY GRID
   ============================================= */
.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 10px;
}

.category {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-black);
    cursor: pointer;
}

.category img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15), transparent);
}

.category span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    letter-spacing: 1px;
}

.category:hover img {
    transform: scale(1.05);
}


/* =============================================
   FEATURE SECTION
   ============================================= */
.feature-section {
    height: 480px;
    background: url("./files/images/HOME-IMAGE.jpg") center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.feature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.feature-overlay {
    position: relative;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
}

.feature-text {
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
    margin: 0;
}

.feature-text .light { font-weight: 300; }
.feature-text .bold  { font-weight: 600; }


/* =============================================
   DESIGN BOOK SECTION
   ============================================= */
.design-book-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    background: var(--color-grey-mid);
    gap: 0;
    align-items: center;
    color: var(--color-black);
}

/* Left image */
.design-book-section .book-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px 30px 30px;
}

.design-book-section .book-left img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
}

/* Center form */
.design-book-section .book-form {
    padding: 40px;
}

.design-book-section .book-form h3 {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    font-weight: 400;
    color: var(--color-white);
}

.design-book-section .radio-group {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--color-white);
}

.design-book-section .radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.design-book-section .radio-group input[type="radio"] {
    margin: 0;
}

.design-book-section form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.design-book-section .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.design-book-section input {
    background: var(--color-white);
    border: none;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--color-black);
    width: 100%;
}

.design-book-section input::placeholder { color: #666; }

.design-book-section input:focus {
    outline: 1px solid var(--color-gold-alt);
}

.design-book-section .book-form button {
    margin-top: 10px;
    width: fit-content;
    padding: 8px 26px;
    background: var(--color-white);
    border: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.design-book-section .book-form button:hover {
    background: #ddd;
}

/* Right panel */
.design-book-section .book-right-panel {
    background: var(--color-grey-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    min-height: 380px;
}

.design-book-section .book-right-panel img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.outline-btn {
    background: transparent;
    border: 1px solid var(--color-gold-alt);
    color: var(--color-gold-alt);
    padding: 8px 22px;
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.outline-btn:hover {
    background: var(--color-gold-alt);
    color: var(--color-black);
}


/* =============================================
   BRANDS SLIDER
   ============================================= */
.brands h2 {
    text-align: center;
    margin: 20px 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.brand-slider {
    width: 100%;
    overflow: hidden;
    background: #000;
}


.brand {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

.brand-track {
    display: flex;
    animation: scroll 45s linear infinite;
    gap:5px;
    width: max-content;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* =============================================
   CATALOGUE SECTION
   ============================================= */
.catalogue-section {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    background: #5a5a5a;
    color: var(--color-white);
    align-items: start;
    margin: 0;
    padding: 0;
}
/* Left */
.catalogue-section .book-left {
    display: flex;
    justify-content: center;
    align-items:flex-start;
    padding-top: 50px;
}

.catalogue-section .book-left img {
    width: 70%;
    max-height: 490px;
    object-fit: cover;
}

/* Right panel */
.catalogue-section .book-right {
    background: #1a1a1a;
    background-image: radial-gradient(circle at center, #a69b9b 0%, #121111 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding: 30px 30px;
    color: var(--color-white);
}
.book-content {
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.book-heading h3 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.book-heading p {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ccc;
}

.catalogue-section .book-right img {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.download-btn {
    margin-top: 20px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    padding: 12px 60px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.download-btn:hover {
    background: #e5e5e5;
}

/* Center form */
.catalogue-form {
    padding: 20px 50px;
    align-self: flex-start;
}

.catalogue-form h2 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.catalogue-form .profile {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    font-size: 13px;
}

.catalogue-form .profile label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.catalogue-form .profile input[type="radio"] {
    margin: 0;
    transform: translateY(-1px);
}

.catalogue-form input[type="text"],
.catalogue-form input[type="email"],
.catalogue-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    background: #e5e5e5;
    font-size: 12px;
    color: var(--color-black);
}

.catalogue-form .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.catalogue-form .form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
}

.catalogue-form .form-bottom p {
    font-size: 10px;
    max-width: 60%;
    color: #ddd;
}

.catalogue-form .form-bottom button {
    background: var(--color-grey-dark);
    border: none;
    padding: 10px 28px;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.catalogue-form .form-bottom button:hover {
    background: #ddd;
}


/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-page {
    background-color: var(--color-white);
    color: #111;
    margin-top: 50px;
}

/* Product section */
.product-section {
    display: grid;
    grid-template-columns: 120px 600px 400px;
    gap: 100px;
    padding: 60px 80px;
    max-width: 1300px;
    border-bottom: 1px solid #eee;
    align-items: start;
}

/* Thumbnails */
.thumbs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 520px;
}

.thumbs {
    overflow-y: auto;
    max-height: 480px;
    padding-right: 6px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.thumbs::-webkit-scrollbar { width: 4px; }
.thumbs::-webkit-scrollbar-thumb { background: #ddd; }
.thumbs::-webkit-scrollbar-track { background: transparent; }

.thumbs img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.thumbs img:hover  { border-color: #000; }
.thumbs img.active { border: 2px solid #000; }

.thumb-count {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: auto;
    padding-top: 10px;
    color: #555;
}

/* Main image */
.main-image img {
    width: 520px;
    height: 520px;
    object-fit: cover;
}

/* Product info */
.product-info h2 {
    font-size: 18px;
    margin: 0;
    color: #111;
}

.product-brand {
    font-size: 12px;
    color: var(--color-text-muted);
}

.breadcrumbs {
    font-size: 10px;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Info links / accordion */
.info-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-links li {
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #111;
    transition: color var(--transition);
}

.info-links li:hover { color: #000; }

.info-links span {
    color: #aaa;
    font-size: 14px;
}

.info-panel {
    display: none;
    margin-top: 20px;
    font-size: 13px;
    color: #555;
}

.info-panel.active { display: block; }

/* Purchase row */
.product-detail-page .purchase-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-detail-page .qty-stock {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-detail-page .stock-status {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1;
}

.product-detail-page .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    height: 38px;
    min-height: 38px;
}

.product-detail-page .quantity span {
    padding: 0 12px;
    font-size: 13px;
    line-height: 38px;
    color: #111;
}

.product-detail-page .qty-btn {
    width: 34px;
    height: 100%;
    background: none;
    border: none;
    color: #111;
    font-size: 16px;
    cursor: pointer;
}

.product-detail-page .price-btn {
    height: 38px;
    padding: 0 20px;
    background: var(--color-gold);
    border: none;
    color: var(--color-white);
    font-size: 12px;
    cursor: pointer;
    margin-top: 15px;
    transition: var(--transition);
}

.product-detail-page .price-btn:hover {
    background: #b8904d;
}

.product-detail-page .in-stock  { color: #2e7d32; }
.product-detail-page .out-stock { color: #c62828; }

.secondary-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #b0aeae;
    border: none;
    cursor: pointer;
}

/* Materials */
.product-detail-page .materials { margin-top: 18px; }

.product-detail-page .mat-title {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.product-detail-page .mat-desc {
    font-size: 12px;
    color: #111;
    letter-spacing: 0.3px;
}

/* Meta */
.meta-title {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}

.meta p      { font-size: 12px; color: #555; margin-bottom: 4px; }
.meta .muted { font-size: 11px; color: #999; }

/* Section divider */
.section-divider {
    position: relative;
    padding: 10px 0;
    margin: 5px 0;
}

.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: #e0e0e0;
}

.section-divider::before { top: 0; }
.section-divider::after  { bottom: 0; }

/* Share */
.share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #111;
}

.share-icons { display: flex; gap: 18px; }

.share-icons a {
    color: #000;
    font-size: 14px;
    transition: opacity var(--transition);
}

.share-icons a:hover { opacity: 0.5; }

.origin {
    font-size: 10px;
    color: #aaa;
    margin-top: 12px;
    letter-spacing: 1px;
}


/* =============================================
   ADDITIONAL INFO (GREY SECTIONS)
   ============================================= */
.additional-info {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    background: #f3f3f3;
    padding: 50px 60px;
    color: #111;
}

.info-menu p {
    font-size: 11px;
    letter-spacing: 1.4px;
    color: #999;
    margin-bottom: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: color var(--transition);
}

.info-menu p.active {
    color: #111;
    font-weight: 500;
}

.info-content { max-width: 780px; }

.info-text {
    font-size: 12px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 100px;
}

.info-block { margin-bottom: 18px; }

.info-block .spec-title {
    font-size: 11px;
    letter-spacing: 1.4px;
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.info-block .spec-text {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.discover-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    color: var(--color-text-muted);
    text-decoration: underline;
    cursor: pointer;
}

/* Info bottom */
.info-bottom {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    background: #ededed;
    padding: 60px;
    color: #111;
}

.info-bottom-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: flex-start;
}

.custom-text p {
    font-size: 12px;
    line-height: 1.7;
    color: #555;
}

/* Custom form */
.custom-form .form-title {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.custom-form .radio-group {
    display: flex;
    gap: 20px;
    font-size: 11px;
    color: #555;
    margin-bottom: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.form-grid input {
    padding: 8px 10px;
    font-size: 11px;
    border: 1px solid #ccc;
    background: var(--color-white);
    color: #111;
    width: 100%;
}

.request-btn {
    width: 100%;
    padding: 10px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 11px;
    letter-spacing: 1.4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.request-btn:hover { background: #333; }

/* Terms section */
.terms-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    background: #d8d4d4;
    padding: 50px 60px;
    border-top: 1px solid #e5e5e5;
    color: #111;
}

.terms-content { max-width: 900px; }

.terms-content h4 {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #555;
    margin-bottom: 10px;
    margin-top: 20px;
    text-transform: uppercase;
}

.terms-content ol {
    padding-left: 18px;
    margin-bottom: 20px;
}

.terms-content li {
    font-size: 11px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.terms-content p {
    font-size: 11px;
    color: #666;
    line-height: 1.7;
}


/* =============================================
   PRODUCT LISTING PAGE
   ============================================= */
.listing-page {
    background: var(--color-white);
    padding: 100px 40px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.product-card {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-image {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    overflow: hidden;
}
.product-image img {
    max-width: 90%;
    max-height: 420px;
    object-fit: contain;
}
.product-meta {
    background: var(--color-grey-light);
    text-align: center;
    padding: 10px 10px 8px;
    margin-top: 0;
}

.product-name {
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.product-brand {
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #888;
    text-transform: uppercase;
    font-weight: 300;
}

.price-bar {
    background: #3a3a3a;
    color: var(--color-white);
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 14px 0;
    cursor: pointer;
    transition: background var(--transition);
}

.price-bar:hover { background: #555; }


/* =============================================
   PRICE MODAL
   ============================================= */
.price-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.price-modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.modal-box {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: var(--color-white);
    margin: 30px auto;
    padding: 25px 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    animation: fadeUp 0.4s ease;
    color: #111;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-black);
}

.modal-box h2 {
    text-align: center;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111;
}

.modal-sub {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.profile-section { margin-bottom: 10px; }

.profile-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 5px;
}

.profile-select {
    display: flex;
    gap: 30px;
}

.profile-select label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgb(62, 59, 59);
    font-size: 15px;
}

.profile-select input[type="radio"] { accent-color: #000; }

.label-text { font-size: 13px; }

.price-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 5px;
    margin-bottom: 10px;
    font-size: 14px;
    outline: none;
    transition: border var(--transition);
    color: #000;
}

.price-form input:focus { border-bottom: 1px solid #000; }

.price-form .two-col {
    display: flex;
    gap: 10px;
}

.privacy-text {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.privacy-text span {
    text-decoration: underline;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover { background: #333; }

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

/*=======================
sample
===========================*/
 .material-section {
            width: 100%;
            margin-bottom: 0;
        }

        .material-image {
    width: 100%;
    height: auto;
    display: block;
}

        .material-text {
            background: #000;
            padding: 50px 60px;
            border-bottom: 1px solid #1a1a1a;
        }

        .material-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 13px;
            letter-spacing: 6px;
            color: #c9a96e;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

       .material-text p {
    font-size: 13px;
    line-height: 2;
    color: #aaa;
    max-width: 900px;
    letter-spacing: 0.5px;
    margin: 0 auto;
}

        .material-swatches {
            display: flex;
            gap: 0;
            margin-bottom: 20px;
            overflow-x: auto;
        }

        .swatch {
            flex: 1;
            min-width: 80px;
            text-align: center;
        }

        .swatch img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }

        .swatch span {
            display: block;
            font-size: 9px;
            letter-spacing: 2px;
            color: #888;
            padding: 8px 4px;
            text-transform: uppercase;
        }

        .page-title {
            text-align: center;
            padding: 40px 20px 40px;
            border-bottom: 1px solid #1a1a1a;
        }

        .page-title h1 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            letter-spacing: 15px;
            color: #c9a96e;
            margin-bottom: 12px;
        }

        
/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
    position: relative;
    height: 65vh;
    background: url("files/images/hero3.webp") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.page-hero .hero-content {
    position: relative;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #e0e0e0;
}


/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-section {
    background: var(--color-grey-light);
    padding: 120px 20px 100px;
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: auto;
}

.thankyou-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.thankyou-content h2 {
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000;
}

.social-icons { margin-top: 25px; }

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: #000;
    color: var(--color-white);
}

.go-back {
    display: inline-block;
    margin: 25px 0;
    font-size: 13px;
    letter-spacing: 2px;
    color: #000;
}

.go-back:hover { text-decoration: underline; }

.contact-info {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #333;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


/* =============================================
   SOCIAL SIDEBAR
   ============================================= */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    background: #535151;
    padding: 6px 0;
    z-index: 9999;
}

.social-sidebar a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #f4efef;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    transition: var(--transition);
}

.social-sidebar a:last-child { border-bottom: none; }

.social-sidebar a:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.social-sidebar .whatsapp { color: var(--color-white); }


/* =============================================
   BOTTOM CTA
   ============================================= */
.bottom-cta {
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 70px 20px;
}

.bottom-cta h3 {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 20px;
}

.bottom-cta strong { font-weight: 600; }

.explore-btn {
    display: inline-block;
    color: var(--color-white);
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 5px;
    transition: opacity var(--transition);
}

.explore-btn:hover { opacity: 0.7; }


/* =============================================
   TABS
   ============================================= */
.tab-content         { display: none; }
.tab-content.active  { display: block; }


/* =============================================
   AMBASSADOR PAGE
   ============================================= */
.hero-ambassador {
    height: 70vh;
    background: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.hero-ambassador::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-ambassador-content {
    position: relative;
    z-index: 2;
}

.hero-ambassador h1 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 3px;
    font-weight: 500;
}

.hero-ambassador p {
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.ambassador-section {
    background: #555;
    padding: 10px 0;
}

.ambassador-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
    padding: 40px 20px;
}

/* Left column */
.amb-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.amb-left > img:first-child {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
}

.left-small {
    width: 250px;
    height: 160px;
    object-fit: cover;
    margin-top: 5px;
    border-radius: 6px;
    margin-left: 115px;
}

/* Right column */
.amb-right {
    color: var(--color-white);
    max-width: 620px;
    position: relative;
}

.amb-right h2 {
    font-size: clamp(20px, 3vw, 26px);
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 22px;
}

/* Title block */
.title-wrap { position: relative; margin-bottom: 5px; }

.small-top {
    color: #c9b37a;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.brand-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    color: #c9b37a;
    letter-spacing: 2px;
    margin: 0;
}

.near-text {
    position: absolute;
    right: 40px;
    bottom: 10px;
    color: #c9b37a;
    font-size: 13px;
}

.vertical-bar {
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 130px;
    background: var(--color-white);
}

.right-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin: 10px 0 25px;
}

.amb-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
    max-width: 560px;
    margin-bottom: 5px;
}

.premium-text {
    font-size: clamp(36px, 5vw, 64px);
    margin: 5px 0;
    font-weight: 300;
    color: #c9b37a;
    letter-spacing: 6px;
}

.premium-sub {
    display: block;
    text-align: right;
    color: #c9b37a;
    font-size: 13px;
    margin-bottom: 5px;
}

.benefit-top {
    color: #c9b37a;
    font-size: 13px;
}

.benefits-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: #c9b37a;
    letter-spacing: 4px;
    margin: 3px 0;
}

.register-link {
    color: #c9b37a;
    font-size: 13px;
    cursor: pointer;
    transition: opacity var(--transition);
    margin-top: 0px;
}

.register-link:hover { opacity: 0.7; }

/* Ambassador form */
.amb-right .amb-form-radio {
    font-size: 12px;
    letter-spacing: 1px;
    color: #eee;
    margin-bottom: 10px;
}

.amb-right .amb-radio-group {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.amb-right .amb-radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

.amb-right .amb-radio-group input[type="radio"] {
    margin: 0;
    position: relative;
    top: 1px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.amb-right input[type="text"],
.amb-right input[type="email"],
.amb-right input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    background: var(--color-white);
    font-size: 12px;
    color: var(--color-black);
}

.amb-right .form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
}

.amb-right .form-bottom p {
    font-size: 10px;
    color: #eee;
    max-width: 65%;
    line-height: 1.4;
}

.amb-right .form-bottom button {
    background: #ddd;
    border: none;
    padding: 10px 34px;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.amb-right .form-bottom button:hover { background: var(--color-white); }

/* Login helper text */
.login-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.login-text a {
    color: #ddd6d0;
    font-weight: 500;
    margin-left: 4px;
}

.login-text a:hover { text-decoration: underline; }


/* =============================================
   LOGIN PAGE
   ============================================= */
.login-subtitle {
    color: #888;
    margin-bottom: 25px;
    font-size: 14px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 10px 0 20px;
}

.login-options a {
    color: #e6e0e0;
    transition: opacity var(--transition);
}

.login-options a:hover { text-decoration: underline; }

.remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    cursor: pointer;
    white-space: nowrap;
}

.remember input {
    margin: 0;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #5c5b5a;
    border: none;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.login-btn:hover { background: #21201f; }


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: #111;
}

.contact-left {
    background: url("files/images/contactus.jpeg") center/cover no-repeat;
    min-height: 400px;
}

.covet-form {
    background: var(--color-white);
    padding: 120px 55px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

.covet-form h2 {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.covet-form h3 { color: #000; }

.covet-sub {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 520px;
}

.covet-label {
    font-size: 11px;
    color: #666;
    display: block;
    margin-bottom: 8px;
    margin-top: 10px;
}

.covet-radio {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 12px;
    flex-wrap: wrap;
}

.covet-radio label {
    white-space: nowrap;
    color: #000;
}

.covet-radio input { margin-right: 6px; }

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #000;
}

.radio-option input {
    margin: 0;
    accent-color: #000;
}

.contact-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.radio-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    cursor: pointer;
}

.radio-inline input { margin: 0; width: auto; }

.covet-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 12px;
}

.covet-form input,
.covet-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: var(--color-white);
    font-size: 12px;
    color: #111;
}

.covet-form input::placeholder,
.covet-form textarea::placeholder { color: #999; }

.covet-form textarea {
    margin-top: 5px;
    margin-bottom: 15px;
}

.covet-check {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    color: #555;
    margin-bottom: 20px;
}

.covet-check input { margin-right: 8px; }

.covet-form button {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 14px 22px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.covet-form button:hover { background: #222; }

.covet-contact-info { margin-top: 35px; }

.covet-contact-info h3 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000;
}

.covet-contact-info p {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
}


/* =============================================
   TERMS & CONDITIONS PAGE
   ============================================= */
.terms-wrapper {
    background: var(--color-white);
    padding: 120px 20px;
}

.terms-container {
    max-width: 1020px;
    margin: auto;
}

.terms-container h1 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.last-update {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.terms-container h2 {
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 10px;
    color: #111;
    font-weight: 600;
}

.terms-container p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}


/* =============================================
   PACKAGES SECTION
   ============================================= */
.packages {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--color-white);
    padding: 20px;
    border: 1px solid #ccc;
    color: #000;
}

.package-header {
    background: #e8e8e8;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid red;
    color: #f52929;
}

.package-price {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.package-card .main-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product {
    padding: 8px;
    text-align: center;
    font-size: 11px;
    color: #000;
}

.product img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    margin-bottom: 5px;
}

.product span {
    font-size: 10px;
    color: var(--color-text-muted);
}

.product p {
    font-size: 11px;
    margin-top: 4px;
}


/* =============================================
   AMBASSADOR PAGE – SPECIFIC STYLES
   ============================================= */

.hero-ambassador {
    height: 100vh;
    background: url("files/images/herooo.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-ambassador::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-ambassador-content {
    position: relative;
    z-index: 2;
}

.hero-ambassador h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: 6px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-ambassador p {
    font-size: 13px;
    letter-spacing: 3px;
    color: #ddd;
    text-transform: uppercase;
}

/* Section */
.ambassador-section {
    background: #111;
    padding: 60px 40px;
}

.ambassador-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.amb-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.amb-left .left-big {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.amb-left .left-small {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* RIGHT */
.amb-right {
    color: #fff;
    display: flex;
    flex-direction: column;
}

.title-wrap {
    position: relative;
    margin-bottom: 20px;
    padding-right: 30px;
}

.small-top {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #c9b37a;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.0;
    color: #c9b37a;
    letter-spacing: 3px;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.near-text {
    position: absolute;
    right: 30px;
    bottom: 8px;
    color: #c9b37a;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.vertical-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #fff;
}

.right-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 16px 0;
    display: block;
}

.amb-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 4px;
}

.premium-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: #c9b37a;
    letter-spacing: 4px;
    margin: 4px 0 0 0;
    line-height: 1;
    text-transform: uppercase;
}

.premium-sub {
    display: block;
    text-align: right;
    color: #c9b37a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.benefit-top {
    display: block;
    color: #c9b37a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    color: #c9b37a;
    letter-spacing: 4px;
    margin: 4px 0 6px 0;
    line-height: 1;
    text-transform: uppercase;
}

.register-link,
.register-btn {
    display: inline-block;
    color: #c9b37a;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-bottom: 1px solid #c9b37a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
    margin-bottom: 20px;
}

.register-link:hover,
.register-btn:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .ambassador-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .amb-left .left-big { height: 380px; }
    .amb-left .left-small { width: 160px; height: 110px; }
    .vertical-bar { display: none; }

    .near-text {
        position: static;
        display: block;
        margin-top: 4px;
    }

    .title-wrap { padding-right: 0; }
}

@media (max-width: 600px) {
    .ambassador-section { padding: 40px 20px; }
    .hero-ambassador { height: 45vh; }
    .amb-left .left-big { height: 280px; }
    .right-img { height: 160px; }

    .brand-title,
    .premium-text,
    .benefits-title {
        font-size: clamp(32px, 10vw, 52px);
    }
}

/* =============================================
   MOBILE MENU DRAWER
   ============================================= */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 20px 24px;
    border-top: 1px solid #333;
    position: fixed;
    top: 65px; /* height of navbar */
    left: 0;
    right: 0;
    z-index: 49;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #ccc;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 14px 0;
    border-bottom: 1px solid #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #fff;
}

.mobile-menu .mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 10px;
}

.mobile-menu .mobile-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #ccc;
    font-size: 13px;
    width: 100%;
}

.mobile-menu .mobile-search input::placeholder {
    color: #666;
}

/* =============================================
   IMAGE VIEWER
   ============================================= */
.viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.viewer img {
    max-width: 90%;
    max-height: 85%;
}

.close-viewer {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: var(--color-white);
    cursor: pointer;
}


/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .product-section {
        grid-template-columns: 80px 1fr 340px;
        gap: 40px;
        padding: 40px;
    }

    .main-image img {
        width: 100%;
        height: auto;
    }

    .design-book-section {
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .catalogue-section {
        grid-template-columns: 1fr 1.4fr 1fr;
    }

    .ambassador-wrapper {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .header {
        padding: 16px 30px;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .listing-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .design-book-section {
        grid-template-columns: 1fr;
    }

    .design-book-section .book-left,
    .design-book-section .book-right-panel {
        display: none; /* hide on tablet; keep form */
    }

    .catalogue-section {
        grid-template-columns: 1fr;
    }

    .catalogue-section .book-left {
        display: none;
    }

    .product-section {
        grid-template-columns: 60px 1fr 280px;
        gap: 24px;
        padding: 30px 24px;
    }

    .additional-info,
    .info-bottom,
    .terms-section {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .info-bottom-content {
        grid-template-columns: 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-left {
        height: 300px;
    }

    .ambassador-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape / large phones */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .header nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 4px;
    }

    .header nav a { margin-left: 0; margin-right: 12px; }

    .header .right {
        width: 100%;
        align-items: flex-start;
    }

    .search-box { width: 100%; }

    .categories { grid-template-columns: 1fr; }

    .category { height: 300px; }

    .feature-section { height: 360px; }

    .product-section {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .thumbs-wrapper {
        flex-direction: row;
        height: auto;
    }

    .thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        max-width: 100%;
    }

    .main-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    .listing-page {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .product-image { height: 380px; }

    .modal-box { padding: 30px 20px; }

    .price-form .two-col {
        flex-direction: column;
        gap: 0;
    }

    .covet-form { padding: 30px 24px; }

    .covet-form .row { grid-template-columns: 1fr; }

    .catalogue-form { padding: 30px 24px; }

    .catalogue-form .two { grid-template-columns: 1fr; gap: 0; }

    .catalogue-form .form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalogue-form .form-bottom p { max-width: 100%; }

    .contact-info { flex-direction: column; gap: 12px; }

    .packages { grid-template-columns: 1fr; }

    .profile-select { flex-direction: column; gap: 10px; }

    .form-row { flex-direction: column; gap: 0; }

    .amb-right .form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .amb-right .form-bottom p { max-width: 100%; }
}

/* Small phones */
@media (max-width: 480px) {
    .page-hero { height: 45vh; }

    .brand-track { width: calc(300px * 10); }

    .category-card { width: 150px; height: 140px; }

    .near-text { display: none; }

    .vertical-bar { display: none; }
}
/* =============================================
   BACKEND PRODUCT IMAGE FIX
   ============================================= */
.listing-page .product-image {
    height: 380px;
    padding: 0;
    margin: 0;
    background: var(--color-white);
    overflow: hidden;
}

.listing-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.listing-page .product-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.listing-page .product-meta {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: var(--color-grey-light);
}

.listing-page .product-name {
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.listing-page .product-brand {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.2px;
}
/* ─────────────────────────────────────────────
   HEADER NAV
───────────────────────────────────────────── */
.header-nav {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-align: center;
}

.header-nav-row {
    margin-bottom: 6px;
}

/* ─────────────────────────────────────────────
   FOOTER LINKS
───────────────────────────────────────────── */
.footer-links {
    text-align: center;
}

.footer-links-row {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.footer-links-row a {
    color: #a3a3a3;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-row a:hover {
    color: #fff;
}

/* ─────────────────────────────────────────────
   NEWSLETTER MESSAGE
───────────────────────────────────────────── */
.newsletter-msg {
    font-size: 11px;
    margin-top: 6px;
    letter-spacing: 1px;
    color: #c9a96e;
    display: none;
}

/* ─────────────────────────────────────────────
   FORM MESSAGE
───────────────────────────────────────────── */
.form-msg {
    font-size: 11px;
    color: #c9a96e;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* ─────────────────────────────────────────────
   LOADING / EMPTY STATE
───────────────────────────────────────────── */
.loading-msg,
.no-products,
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #888;
    letter-spacing: 3px;
    font-size: 13px;
}

/* ─────────────────────────────────────────────
   PRODUCT CARD IMAGE
───────────────────────────────────────────── */
.product-card-image {
    height: 380px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card-meta {
    background: #efefef;
    text-align: center;
    padding: 10px;
}

.product-card-name {
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-card-brand {
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #888;
    text-transform: uppercase;
    font-weight: 300;
}

/* ─────────────────────────────────────────────
   AMBASSADOR LOGIN LINK
───────────────────────────────────────────── */
.ambassador-login-link {
    margin-top: 12px;
    background: transparent;
    color: #c9a96e;
    border: 1px solid #c9a96e;
}

/* ─────────────────────────────────────────────
   DASHBOARD CONTAINER
───────────────────────────────────────────── */
.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-meta {
    color: #888;
    font-size: 12px;
}

/* ─────────────────────────────────────────────
   HERO SLIDER
───────────────────────────────────────────── */
.hero-slides { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-dots { position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 20; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.hero-dot.active { background: #fff; }

/* ─────────────────────────────────────────────
   FEATURE SLIDER
───────────────────────────────────────────── */
.feature-slider { height: 560px; position: relative; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; overflow: hidden; width: 100%; }
.fslide { position: absolute; inset: 0; background-size: cover; background-position:center; opacity: 0; transition: opacity 1s ease-in-out; }
.fslide::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.fslide.active { opacity: 1; }
.fslide-1 { background-image: url('files/images/banner2.jpeg'); }
.fslide-2 { background-image: url('files/images/banner2.1.jpeg'); }
.fslide-3 { background-image: url('files/images/banner2.2.jpeg'); }
.fslide-4 { background-image: url('files/images/banner2.3.jpeg'); }
.fslide-5 { background-image: url('files/images/banner2.4.jpeg'); }
.feature-overlay { position: relative; z-index: 10; text-align: center; bottom: 20px; color: #fff; max-width: 900px; }
.fslider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 20; }
.fdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.fdot.active { background: #fff; }
@media (max-width: 768px) { .feature-slider { height: 360px; } }
 section.relative.h-screen {
    height: calc(100vh - 80px) !important;
    margin-top: 80px;
}
/* Smaller text for additional info and description */
#productDescription {
    font-size: 12px;
    line-height: 1.8;
    color: #555;
}

.tab-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #555;
}

.tab-content h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #555;
}

.tab-content ol li {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
}

#dimDetail, #matDetail {
    font-size: 12px;
    color: #555;
}