/*
Theme Name: Mota Jewels
Theme URI: https://motajewels.com
Author: Mota Jewels
Author URI: https://motajewels.com
Description: Elegant luxury jewelry theme for Mota Jewels - featuring gold and black color scheme with sophisticated typography.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mota-jewels
*/

/* ========================================
   CSS Variables
======================================== */
:root {
    --gold: #C9A962;
    --gold-light: #D4BC7B;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
}

/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* ========================================
   Navigation
======================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.site-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.site-logo a {
    color: var(--gold);
}

.main-navigation ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.main-navigation a {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cream-dark);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

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

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--black);
}

/* ========================================
   Section Styles
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--cream);
}

/* Diamond Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 100px;
    background: var(--gold);
}

.divider span {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 1.5rem;
}

/* ========================================
   About Section
======================================== */
.about-section {
    padding: 8rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: var(--cream);
}

.about-image {
    height: 500px;
    background: linear-gradient(145deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
}

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

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

.placeholder-icon {
    color: var(--gold);
    opacity: 0.3;
}

.placeholder-text {
    color: var(--gold);
    opacity: 0.5;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.about-content h3 {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ========================================
   Collections Section
======================================== */
.collections-section {
    padding: 8rem 10%;
    background: var(--black);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-image {
    height: 400px;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image,
.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.collection-overlay h4 {
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 2px;
}

.collection-overlay span {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   Features Section
======================================== */
.features-section {
    padding: 6rem 10%;
    background: var(--cream-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: 8rem 10%;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h3 {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.contact-info > p {
    color: #555;
    font-weight: 300;
    line-height: 1.8;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--gold);
}

.contact-item h5 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-item p {
    color: #555;
    font-weight: 300;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black);
    padding: 3rem;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 2rem;
    text-align: center;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #333;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.wpcf7-form textarea {
    height: 120px;
    resize: none;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #666;
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.wpcf7-form input[type="submit"]:hover {
    background: transparent;
    color: var(--gold);
}

/* Simple Contact Form (non-CF7) */
.simple-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.simple-contact-form input,
.simple-contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #333;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.simple-contact-form textarea {
    height: 120px;
    resize: none;
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
    color: #666;
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--black);
    padding: 4rem 10% 2rem;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 1px;
}

/* ========================================
   Page Templates
======================================== */
.page-header {
    padding: 12rem 10% 6rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--cream);
    letter-spacing: 3px;
}

.page-header p {
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.page-content {
    padding: 6rem 10%;
    background: var(--cream);
}

.page-content p {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* ========================================
   Inquiry Popup Styles
======================================== */
.inquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.inquiry-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: var(--black);
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    border: 1px solid var(--gold);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

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

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-icon {
    display: inline-block;
    color: var(--gold);
    margin-bottom: 1rem;
}

.popup-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.popup-header p {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.popup-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-contact-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: var(--charcoal);
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-contact-item:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

.popup-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-right: 1rem;
}

.popup-contact-info {
    display: flex;
    flex-direction: column;
}

.popup-contact-label {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.popup-contact-value {
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 400;
}

.popup-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.popup-footer p {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Make product cards clickable */
.product-card {
    cursor: pointer;
}

@media (max-width: 500px) {
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-contact-value {
        font-size: 1rem;
    }
}

/* ========================================
   Individual Collection Pages
======================================== */
.collection-page-header {
    padding: 14rem 10% 6rem;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.collection-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.collection-page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--cream);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.collection-page-header p {
    font-size: 1.1rem;
    color: var(--cream-dark);
    opacity: 0.9;
}

.collection-description {
    padding: 5rem 10%;
    background: var(--cream);
    text-align: center;
}

.collection-description h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.collection-description p {
    font-size: 1.05rem;
    color: #555;
    font-weight: 300;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Filter Buttons */
.collection-filters {
    padding: 2rem 10%;
    background: var(--cream-dark);
    text-align: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 0.8rem 1.5rem;
    margin: 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--gold);
}

/* Product Gallery */
.product-gallery {
    padding: 4rem 10%;
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
}

.placeholder-product {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.4;
}

.placeholder-product span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--cream);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 0.9rem;
    color: #666;
}

/* Collection CTA */
.collection-cta {
    padding: 6rem 10%;
    background: var(--black);
    text-align: center;
}

.collection-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.collection-cta p {
    font-size: 1rem;
    color: #888;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Bridal Consultation */
.bridal-consultation {
    padding: 6rem 10%;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
}

.consultation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.consultation-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.consultation-content p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.consultation-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.consultation-features li {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Back to Collections */
.back-to-collections {
    padding: 3rem 10%;
    background: var(--cream-dark);
    text-align: center;
}

.back-link {
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold);
}

/* Responsive Individual Collection Pages */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-page-header {
        padding: 12rem 5% 4rem;
    }
    
    .collection-page-header h1 {
        font-size: 2.5rem;
    }
    
    .collection-description,
    .product-gallery,
    .collection-cta {
        padding: 3rem 5%;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    
    .consultation-features {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ========================================
   Collections Page Styles
======================================== */
.collections-intro {
    padding: 4rem 10%;
    background: var(--cream);
    text-align: center;
}

.collections-intro p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 300;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

.collections-page-section {
    padding: 4rem 10%;
    background: var(--cream-dark);
}

.collections-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.collection-page-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.collection-page-image {
    height: 500px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

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

.collection-page-card:hover .collection-page-image img {
    transform: scale(1.1);
}

.collection-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 2rem;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
}

.collection-page-card:hover .collection-page-overlay {
    background: linear-gradient(transparent 10%, rgba(0,0,0,0.95));
}

.collection-tag {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.collection-page-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.collection-page-overlay p {
    font-size: 0.9rem;
    color: var(--cream-dark);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.collection-page-card:hover .collection-page-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.collection-page-overlay .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    width: fit-content;
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
}

.collection-page-card:hover .collection-page-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

.placeholder-collection {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: var(--gold);
    opacity: 0.3;
}

.collections-cta {
    padding: 6rem 10%;
    background: var(--black);
    text-align: center;
}

.collections-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.collections-cta p {
    font-size: 1rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Collections Page */
@media (max-width: 1024px) {
    .collections-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-page-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .collections-page-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-page-image {
        height: 350px;
    }
    
    .collection-page-overlay p,
    .collection-page-overlay .btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .collections-intro,
    .collections-page-section {
        padding: 3rem 5%;
    }
    
    .collections-cta {
        padding: 4rem 5%;
    }
    
    .collections-cta h2 {
        font-size: 2rem;
    }
}

/* ========================================
   WordPress Specific
======================================== */
.wp-block-image {
    margin: 2rem 0;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 2rem;
}

.alignright {
    float: right;
    margin-left: 2rem;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .about-section,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 2rem;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
    }
    
    .about-content h2,
    .contact-info h2,
    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-section,
    .contact-section {
        padding: 4rem 5%;
    }

    .collections-section {
        padding: 4rem 5%;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero-content .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 250px;
    }
}
