/* ==========================================
   GLOBAL CONFIGURATION & THEME CONSTANTS
   ========================================== */
:root {
    --primary-gold: #C19A5B;
    --gold-light: #F4EFE6;
    --deep-maroon: #5C1D24;
    --bg-cream: #FDFBF7;
    --bg-white: #FFFFFF;
    --text-dark: #2D1F18;
    --text-muted: #7A6E65;
    --border-soft: rgba(193, 154, 91, 0.2);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   NAVIGATION STYLE BLOCK
   ========================================== */
.main-header {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-maroon);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--deep-maroon);
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    background: rgba(193, 154, 91, 0.06);
    border: 1px solid var(--border-soft);
    padding: 8px 16px;
    padding-right: 35px;
    border-radius: 20px;
    outline: none;
    font-size: 13px;
    width: 200px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
}

.icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--deep-maroon);
    color: white;
    font-size: 9px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================
   SHOP HERO BREADCRUMB HEADER
   ========================================== */
.shop-hero-header {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background-color: #FAF6F0;
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}

/* Subtle line vector mandalas representation using CSS layouts */
.mandala-bg-left, .mandala-bg-right {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(193, 154, 91, 0.15);
    border-radius: 50%;
    top: -50px;
}
.mandala-bg-left { left: -50px; }
.mandala-bg-right { right: -50px; }

.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.breadcrumb a {
    text-decoration: none;
    color: var(--primary-gold);
}

.shop-main-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--deep-maroon);
    margin: 12px 0;
    letter-spacing: 2px;
}

.shop-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   UTILITY HORIZONTAL TICKER
   ========================================== */
.utility-ticker {
    background-color: var(--gold-light);
    border-bottom: 1px solid var(--border-soft);
    padding: 12px 0;
}

.ticker-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-ticker span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-ticker i {
    color: var(--primary-gold);
}

/* ==========================================
   CATALOG CONTROLS & FILTER BAR
   ========================================== */
.catalog-controls-section {
    padding: 30px 0;
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-pills {
    display: flex;
    gap: 12px;
}

.pill {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.pill:hover, .pill.active {
    background-color: var(--deep-maroon);
    color: var(--bg-cream);
    border-color: var(--deep-maroon);
}

.sort-actions {
    display: flex;
    gap: 15px;
}

.search-inline input {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-soft);
    font-size: 13px;
    outline: none;
}

.sort-select {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-soft);
    background: var(--bg-white);
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}


/* ==========================================
   THE 4-COLUMN PREMIUM CATALOGUE CONTAINER
   ========================================== */
.section-catalog-grid {
    padding: 20px 0 80px;
    background-color: var(--bg-cream);
}

.main-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Fallback adaptive response framework */
@media (max-width: 1200px) {
    .main-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .main-products-grid { grid-template-columns: repeat(2, 1fr); }
}

.catalog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(45, 31, 24, 0.06);
    border-color: rgba(193, 154, 91, 0.4);
}

/* Custom Catalog Corner Tags */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 3px;
    z-index: 5;
    text-transform: uppercase;
}

.gold-badge {
    background-color: var(--primary-gold);
    color: #1A110D;
}

.maroon-badge {
    background-color: var(--deep-maroon);
    color: white;
}

/* Image Core Layer */
.card-img-holder {
    position: relative;
    height: 280px;
    background-color: #FAF7F2;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.catalog-card:hover .card-img-holder img {
    transform: scale(1.05);
}

/* Hover Quick action layer elements */
.card-hover-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 4;
}

.catalog-card:hover .card-hover-actions {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.c-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-soft);
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.c-action-btn:hover {
    background-color: var(--deep-maroon);
    color: white;
    border-color: var(--deep-maroon);
}

/* Details and Spacers Layout */
.card-details {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-stars {
    color: #FFB300;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.card-stars .count {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 500;
}

.card-item-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Uniform height alignment constraint */
}

.card-item-title a {
    text-decoration: none;
    color: inherit;
}

.card-item-title a:hover {
    color: var(--primary-gold);
}

.card-price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto; /* Pushes price layer precisely to bottom */
}

.c-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-maroon);
}

.c-old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Card Add To Cart Action Trigger */
.c-add-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.c-add-btn:hover {
    background-color: var(--deep-maroon);
    border-color: var(--deep-maroon);
    color: white;
}


/* ==========================================
   COMING SOON SECTION STYLES
   ========================================== */
.section-coming-soon {
    padding: 60px 0 120px;
    background-color: var(--bg-cream);
    text-align: center;
}

.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-divider {
    margin: 0 auto 20px !important;
    width: 180px;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.coming-soon-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 500px;
}

/* ==========================================
   SHOP PRESTIGE FOOTER & NEWSLETTER BOX
   ========================================== */
.shop-main-footer {
    background-color: #1A110D; /* Rich dark brown theme matching image footer base */
    color: rgba(253, 251, 247, 0.7);
    padding: 0 0 30px;
    border-top: 2px solid var(--primary-gold);
    position: relative;
}

/* Offset positioning layer for overlaying newsletter exactly like design */
.shop-newsletter-box {
    background: linear-gradient(135deg, #421217 0%, var(--deep-maroon) 100%);
    border: 1px solid rgba(193, 154, 91, 0.3);
    border-radius: 12px;
    padding: 35px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transform: translateY(-60px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.s-news-text h3 {
    font-family: var(--font-heading);
    color: var(--bg-cream);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.s-news-text p {
    font-size: 13px;
    color: rgba(253, 251, 247, 0.7);
}

.s-news-form {
    display: flex;
    gap: 10px;
    width: 45%;
}

.s-news-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid rgba(193, 154, 91, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-cream);
    font-family: var(--font-body);
    font-size: 13.5px;
    outline: none;
}

.s-news-form input::placeholder {
    color: rgba(253, 251, 247, 0.4);
}

.s-news-form button {
    padding: 12px 24px;
    background-color: var(--primary-gold);
    color: #1A110D;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 13.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.s-news-form button:hover {
    background-color: var(--bg-cream);
    color: var(--deep-maroon);
}

/* Grid parameters for structural layout column links */
.shop-footer-cols {
    margin-top: -10px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(253, 251, 247, 0.08);
}

.s-foot-col h4 {
    font-family: var(--font-heading);
    color: var(--bg-cream);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.s-foot-col h5 {
    color: var(--primary-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.s-foot-col p {
    font-size: 13px;
    line-height: 1.6;
}

.brand-summary p {
    margin-bottom: 20px;
}

.s-socials {
    display: flex;
    gap: 12px;
}

.s-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(253, 251, 247, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-cream);
    font-size: 13px;
    transition: var(--transition);
}

.s-socials a:hover {
    background-color: var(--primary-gold);
    color: #1A110D;
}

.s-foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s-foot-col ul a {
    text-decoration: none;
    font-size: 13.5px;
    color: rgba(253, 251, 247, 0.7);
    transition: var(--transition);
}

.s-foot-col ul a:hover {
    color: var(--primary-gold);
    padding-left: 3px;
}

.c-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.c-info i {
    color: var(--primary-gold);
}

/* Bottom Copyright Strip alignment */
.shop-footer-bottom {
    padding-top: 25px;
    text-align: center;
    font-size: 11.5px;
    color: rgba(253, 251, 247, 0.35);
}