/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #bba67b; /* Gold/Bronze */
    --primary-hover: #a38f65;
    --text-dark: #222222;
    --text-light: #777777;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span i, .top-bar-right span i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

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

.logo h1 {
    font-size: 40px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-text h2 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a {
    font-size: 18px;
    position: relative;
}

.header-icons a:hover {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--black);
    color: var(--white);
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-color: var(--black);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Gradient overlay for better text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #eeeeee;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.hero-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-nav button {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

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

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================================================
   Collections Section
   ========================================================================== */
.collections {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title-wrap .subtitle {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title-wrap h2 {
    font-size: 36px;
    font-weight: 400;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all:hover {
    color: var(--primary-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    border-radius: 8px;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.7;
}

.collection-card:hover .collection-img {
    transform: scale(1.05);
    opacity: 0.4;
}

.collection-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.collection-icon {
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.collection-info h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.collection-card:hover .collection-info {
    bottom: 40px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .subtitle {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.stat-text h4 {
    font-size: 24px;
    font-weight: 600;
}

.stat-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.about-image-wrap {
    position: relative;
    height: 500px;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-overlay {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 5px solid var(--bg-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-overlay .percent {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.badge-overlay .text {
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ==========================================================================
   Page Headers (For internal pages)
   ========================================================================== */
.page-header {
    background-color: var(--black);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
}
.breadcrumb {
    font-size: 13px;
    color: #ccc;
}
.breadcrumb a {
    color: var(--primary-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #aaa;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 13px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
.desktop-header-wrapper { display: block; }
.mobile-header-wrapper { display: none; }

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .collections-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .badge-overlay { left: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .desktop-header-wrapper { display: none !important; }
    .mobile-header-wrapper { display: block !important; }

    .top-bar-left span:first-child { display: none; }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title { font-size: 42px; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap:10px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-nav { display: none; }
    .collection-info h3 { font-size:14px; }
}

/* ==========================================================================
   Page Builder Styles
   ========================================================================== */
.page-builder-wrapper { margin:0; padding:0; word-wrap: break-word; overflow-wrap: break-word; word-break: break-word; }

.pb-legacy-content { line-height: 1.8; color: #444; font-size: 16px; padding: 40px 15px; word-wrap: break-word; overflow-wrap: break-word; word-break: break-word; }
.pb-legacy-content img { max-width: 100%; height: auto; }

/* Text Block */
.pb-text-block { padding: 40px 0; background: var(--white); word-wrap: break-word; overflow-wrap: break-word; }
.pb-text-block img { max-width: 100%; height: auto; }

/* Gallery Block */
.pb-gallery-block { padding: 60px 0; background: #fafafa; overflow: hidden; }
.pb-gallery-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.pb-gallery-scroll::-webkit-scrollbar { display: none; }
.pb-gallery-item { flex: 0 0 85%; scroll-snap-align: center; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background:#fff; }
.pb-gallery-item img { width: 100%; height: 500px; object-fit: cover; display: block; }
@media (min-width: 768px) { .pb-gallery-item { flex: 0 0 60%; } }

/* Video Block */
.pb-video-block { padding: 60px 15px; text-align: center; }
.pb-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.pb-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Hero Block */
.pb-hero-block { position: relative; padding: 120px 20px; text-align: center; background-size: cover; background-position: center; color: white; display: flex; align-items: center; justify-content: center; min-height: 50vh; margin-bottom:40px; }
.pb-hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); z-index: 1; }
.pb-hero-content { position: relative; z-index: 2; }
.pb-hero-content h2 { font-size: 48px; font-weight: 700; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.5); line-height: 1.2; }

/* Features Block */
.pb-features-block { padding: 80px 15px; }
.pb-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.pb-feature-box { background: var(--white); padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s transform; border: 1px solid #f0f0f0; }
.pb-feature-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.pb-feature-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(187, 166, 123, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: 0.3s; }
.pb-feature-box:hover .pb-feature-icon { background: var(--primary); color: white; }
.pb-feature-box h3 { font-size: 20px; margin-bottom: 15px; }
.pb-feature-box p { color: #666; line-height: 1.6; font-size: 15px; margin: 0; }

/* ImageText Block */
.pb-imagetext-block { padding: 80px 0; background: var(--white); overflow:hidden; }
.pb-imagetext-flex { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; }
.pb-imagetext-flex.pb-reverse { flex-direction: row-reverse; }
.pb-imagetext-img { flex: 1 1 400px; }
.pb-imagetext-img img { width: 100%; border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); object-fit: cover; max-height: 500px; }
.pb-imagetext-content { flex: 1 1 400px; padding: 20px 15px; word-wrap: break-word; overflow-wrap: break-word; word-break: break-word; }
.pb-imagetext-content h2 { font-size: 36px; margin-bottom: 20px; color: #222; font-weight:700; }
.pb-imagetext-desc { font-size: 16px; line-height: 1.8; color: #555; }
.pb-imagetext-desc p { margin-bottom: 10px; }

/* Accordion Block */
.pb-accordion-block { padding: 60px 15px; max-width: 800px; margin: 0 auto; }
.pb-accordion-item { border: 1px solid #eee; border-radius: 10px; margin-bottom: 15px; overflow: hidden; background: var(--white); }
.pb-accordion-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: none; border: none; font-size: 18px; font-weight: 600; color: #333; cursor: pointer; transition: 0.2s; text-align:left; font-family:inherit; }
.pb-accordion-btn:hover { background: #fafafa; color: var(--primary); }
.pb-accordion-btn.open { background: var(--primary); color: white; }
.pb-accordion-btn.open i { transform: rotate(180deg); }
.pb-accordion-btn i { transition: 0.3s; font-size: 14px; }
.pb-accordion-content { padding: 0 25px; max-height: 0; overflow: hidden; transition: 0.3s max-height; background: #fafafa; }
.pb-accordion-content.active { max-height: 1000px; padding: 20px 25px; border-top: 1px solid #eee; }
.pb-accordion-content p { margin: 0; color: #555; line-height: 1.7; }

/* CTA Block */
.pb-cta-block { padding: 100px 15px; background: linear-gradient(135deg, #111, #222); text-align: center; color: white; }
.pb-cta-inner { max-width: 700px; margin: 0 auto; }
.pb-cta-inner h2 { font-size: 40px; margin-bottom: 20px; color: var(--primary); font-weight:700; }
.pb-cta-inner p { font-size: 18px; line-height: 1.6; margin-bottom: 40px; opacity: 0.9; }
.pb-cta-inner .cta-btn { font-size: 18px; padding: 15px 40px; border-radius: 30px; background: var(--primary); color:white; font-weight:bold; text-decoration:none; display:inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(187, 166, 123, 0.3); }
.pb-cta-inner .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(187, 166, 123, 0.5); color:white; }
