@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
    --bg-color: #fbfaf6;       
    --text-color: #2c2c2c;     
    
    --stone-grey: #6a7585;
    --midnight: #2e384a;
    
    --gold: #d4af37;
    --gold-hover: #b59020;
    
    --light-grey: #f4f4f4;
    
    --font-heading: 'Cormorant Garamond', serif; 
    --font-body: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

header {
    background-color: #fff;
    padding: 15px 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    
    background-color: var(--midnight);
    border-radius: 50%;
    padding: 5px;   
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    position: relative;
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-link { position: relative; transition: transform 0.2s; }
.cart-link:hover { transform: scale(1.1); }
.cart-link img { width: 24px; height: 24px; }

#cart-count {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--gold);
    color: white;
    font-size: 10px;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 3000;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--midnight);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--gold);
    z-index: 3000;
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
    background-color: var(--gold);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--midnight);
    z-index: 100;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.open {
    right: 0;
}

.mobile-menu-content nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu-content a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu-content a:hover {
    color: var(--gold);
}

.mobile-footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 900px) {
    header { padding: 15px 20px; }
    
    .desktop-nav { display: none; }
    .burger-menu { display: flex; }
    
    .logo-text { font-size: 1.2rem; }
    .logo-img { height: 40px; }
}

.aesthetic-hero {
    position: relative;
    width: 100%;
    min-height: 85vh; 
    background-color: var(--bg-color);
    overflow: hidden;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
}

.misty-title {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1.1;
    
    color: rgba(255, 255, 255, 0.912);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 
                 0 0 40px rgba(255, 255, 255, 0.351);
    filter: blur(0.5px);
    
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: overlay;
}


.hero-accent-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%; 
    height: 100%;
    background-color: var(--stone-grey); 
    z-index: 0;

    background-image: url('images/fog_pattern.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-blend-mode: screen; 
}

.hero-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1; 
}

.hero-images-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.img-main-box {
    width: 80%; 
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
}

.img-main {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; 
    object-fit: cover;
    filter: sepia(10%); 
}

.img-small-box {
    position: absolute;
    top: 40%; 
    right: 15%; 
    width: 320px; 
    z-index: 2; 
    box-shadow: -10px 10px 40px rgba(0,0,0,0.2);
}

.img-small {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4; 
    object-fit: cover;
    border: 6px solid #fff; 
}

.hero-text-content {
    margin-top: 50px;
    max-width: 65%;
    padding-left: 10px;
}

.hero-text-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem; 
    font-weight: 300; 
    color: var(--midnight); 
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.link-arrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--midnight);
    padding-bottom: 5px;
    transition: 0.3s;
    font-weight: 500;
}

.link-arrow .arrow {
    display: inline-block;
    transition: transform 0.3s;
    margin-left: 10px;
}

.link-arrow:hover {
    color: var(--gold); 
    border-color: var(--gold);
}

.link-arrow:hover .arrow {
    transform: translateX(10px); 
}

@media (max-width: 900px) {
    
    .aesthetic-hero {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
        flex-direction: column;
        background-color: #fff;
    }

    .hero-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-images-wrapper {
        display: contents; 
    }

    .img-main-box {
        width: 100%;
        order: 1;
        box-shadow: none;
    }
    
    .misty-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
        left: 50%;
    }

    .hero-text-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 20px 20px 40px 20px;
        text-align: center;
        box-sizing: border-box;
        z-index: 2;
    }
    
    .hero-text-content h2 {
        font-size: 2.5rem;
        margin-top: 0;
        color: var(--midnight);
    }

    .img-small-box {
        order: 3;
        position: relative;
        top: auto;
        right: auto;
        width: 70%;
        margin: 40px auto 60px auto;
        z-index: 2;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .hero-accent-block {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 0;
        z-index: 0;
    }
    
    .aesthetic-hero::after {
        display: none;
    }
}


#collections {
    background-color: #f0f2f5; 
    padding-top: 50px;
    padding-bottom: 50px;
}

.collections-header {
    
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--midnight);
    margin: 0;
    letter-spacing: 4px;
    font-weight: 400;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--stone-grey);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    padding: 0 60px 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    height: 450px; 
    overflow: hidden;
    background-color: #000;
    border: 1px solid rgba(46, 56, 74, 0.2);
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cat-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: var(--gold);
}

.cat-image-wrapper {
    width: 100%;
    height: 100%;
    opacity: 0.85; 
    transition: 0.5s ease;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cat-card:hover img {
    transform: scale(1.1); 
}

.cat-card:hover .cat-image-wrapper {
    opacity: 0.4;
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    background: linear-gradient(to top, rgba(46, 56, 74, 0.9), transparent 60%);
}

.cat-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.cat-divider {
    font-size: 1.2rem;
    color: var(--gold);
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s; 
}

.cat-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    opacity: 0; 
    transform: translateY(20px); 
    transition: 0.4s ease 0.2s;
    max-width: 90%;
}

.btn-explore {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease 0.3s;
}

.btn-explore:hover {
    background: var(--gold);
    color: #000;
}

.cat-card:hover .cat-divider,
.cat-card:hover .cat-desc,
.cat-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
}

.cat-card:hover h3 {
    transform: translateY(-10px); 
    color: var(--gold);
}

@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .categories-grid { grid-template-columns: 1fr; padding: 0 20px 60px 20px; }
    .cat-card { height: 350px; }
    .collections-header h2 { font-size: 2.5rem;}
}

.about-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    box-sizing: border-box;

    background-image: url('images/about_bg.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 56, 74, 0.85); 
    z-index: 1;
}

.about-content-box {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    padding: 60px 40px;
    backdrop-filter: blur(3px);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--gold);
}

.about-divider .line {
    width: 50px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.7;
}

.about-divider .star {
    font-size: 1.2rem;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.about-signature {
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
}

@media (max-width: 600px) {
    .about-section { min-height: auto; padding: 60px 20px; }
    .about-content-box { padding: 30px 20px; border: none; }
    .about-title { font-size: 2.2rem; }
    .about-text { font-size: 1rem; }
}


.faq-section {
    background-color: #fbfaf6c7;
    
    background-image: url('images/stars_pattern.png');
    
    background-repeat: repeat;
    background-size: 600px;
    background-position: center;
    
    background-blend-mode: lighten; 
    
    padding: 80px 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.faq-item {
    padding: 10px;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.faq-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 2px;
    background-color: var(--gold);
}

.faq-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-section {
        padding: 60px 20px;
    }
}


.reviews-section {
    background-color: var(--midnight);
    padding: 100px 40px;
    color: #fff;
    text-align: center;
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.6;
}

.review-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviewer-loc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: none;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .section-title { font-size: 2.5rem;}
}


.contact-section {
    background-image: url('images/contact_bg.jpg');
    
    background-color: #2e384a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    background-attachment: fixed; 

    padding: 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
}


.contact-section {
    background-image: url('images/contact_bg.png');
    
    background-color: #2e384a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    background-attachment: fixed; 

    padding: 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.444);
    z-index: -1;
}

.contact-container {
    width: 100%;
    max-width: 600px;
}

.contact-card {
    background: #fff;
    padding: 60px 40px;
    border: 1px solid rgba(46, 56, 74, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    border-radius: 4px;
}

.magic-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    position: relative;
    text-align: left;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--midnight);
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
    transition: 0.3s;
    resize: none;
}

.input-group textarea {
    min-height: 80px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--gold);
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.9rem;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--gold);
}

.btn-raven {
    background-color: var(--midnight);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-raven:hover {
    background-color: var(--gold);
    color: #fff;
}

.success-message {
    display: none;
    padding: 40px 0;
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 10px;
}

.success-message p {
    font-family: 'Montserrat', sans-serif;
    color: var(--stone-grey);
}

.magic-sparkle {
    font-size: 2rem;
    margin-top: 20px;
    animation: pulse 2s infinite;
    color: #b59020;
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(1); }
}


.cat-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url('images/call_landscape.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.cat-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(46, 56, 74, 0.75);
    z-index: 1;
}

.cat-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.cat-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
}

.cat-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.cat-divider {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cat-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

.products-list-container {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-row {
    display: flex;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: 0.4s ease;
    overflow: hidden;
    height: 400px;
}

.product-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.prod-img-link {
    width: 35%;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0; 
    margin: 0;
    display: block;
    background-color: #fff;
}

.prod-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.prod-img-wrapper img {
width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.product-row:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.product-info {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.info-header {
    margin-bottom: 10px;
}


.product-sku {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--stone-grey);
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: 600;
}

.product-info h3 {
    margin: 0;
    margin-bottom: 5px;
    margin-top: 10px;
    line-height: 1.2;
}

.product-info h3 a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--midnight);
    text-decoration: none;
    transition: color 0.3s;
}

.product-info h3 a:hover {
    color: var(--gold);
}

.product-info .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.product-info .desc {
    color: #444;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 10px;
    
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-add-cart, .btn-details {
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-add-cart {
    background-color: var(--midnight);
    color: #fff;
    border: 1px solid var(--midnight);
}

.btn-add-cart:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.btn-add-cart.added {
    background-color: #2e4a3d;
    border-color: #2e4a3d;
}

.btn-details {
    background-color: transparent;
    color: var(--midnight);
    border: 1px solid #ddd;
}

.btn-details:hover {
    border-color: var(--midnight);
    background-color: #f9f9f9;
}

@media (max-width: 900px) {
    .product-row {
        height: auto;
        flex-direction: column;
    }
    .product-info {
        padding: 30px 20px;
    }
    .product-sku {
        margin-bottom: 10px;
    }
}

.single-product-section {
    max-width: 1200px;
    margin: 40px auto 100px auto;
    padding: 0 40px;
}

.category-breadcrumb-container {
    
    width: 100%;
    max-width: 1400px;
    margin: 20px auto 0 auto;
    padding: 0 0;
    box-sizing: border-box;
    
    display: block;  
}
.category-breadcrumb-container .breadcrumb {
    text-align: left !important;
    justify-content: flex-start !important;
    display: block !important;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breadcrumb a { color: #999; text-decoration: none; border-bottom: 1px solid transparent; }
.breadcrumb a:hover { color: var(--gold); border-color: var(--gold); }
.breadcrumb .current { color: var(--midnight); font-weight: 600; }

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.main-image-frame {
    width: 100%;
    background-color: #fcfbf8;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0;
    overflow: hidden;
}

.main-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-details-box {
    padding-top: 20px;
}

.prod-sku {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--midnight);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.prod-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--midnight);
    margin: 0 0 20px 0;
    font-weight: 400;
}

.prod-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 500;
}

.prod-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 30px 0;
}

.prod-description h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 15px;
}

.prod-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.prod-specs {
    margin: 30px 0;
    background: #f9f9f9;
    padding: 20px;
    border-left: 2px solid var(--gold);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.spec-item:last-child { margin-bottom: 0; }
.spec-item .label { color: var(--midnight); font-weight: 600; }
.spec-item .value { color: #666; }

.prod-actions-area {
    margin-top: 40px;
}

.btn-add-large {
    width: 100%;
    background-color: var(--midnight);
    color: #fff;
    border: none;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-add-large:hover {
    background-color: var(--gold);
    color: #fff;
}

.prod-shipping-info {
    margin-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--stone-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.prod-line{
    width: 200px;
    height: 2px;
    background-color: var(--gold);
    margin-right: 25px;
     margin-left: 25px;
}

.prod-shipping-info p { margin: 5px 0; }

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .prod-title { font-size: 2.5rem; }
    .main-image-frame { margin-bottom: 20px; }
    
    .prod-line{
    width: 0px; 
    margin-right: 5px;
     margin-left: 0px;

}
.prod-shipping-info p{
    font-size: 11px;
}
}


.cart-header-section {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: var(--bg-color);
}

.cart-header-section h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--midnight);
    margin: 0;
}

.cart-header-section p {
    font-family: 'Montserrat', sans-serif;
    color: var(--stone-grey);
    margin-top: 10px;
}

.cart-wrapper {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
    min-height: 400px;
}

.empty-cart-msg {
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    padding: 50px;
    border: 1px dashed #ccc;
}
.empty-cart-msg a { color: var(--gold); text-decoration: underline; }

.cart-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart-img {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info {
    flex-grow: 1;
    padding-left: 20px;
}

.cart-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--midnight);
    margin: 0;
}

.cart-meta {
    font-size: 0.75rem;
    color: #999;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--gold);
}

.btn-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}
.btn-remove:hover { color: red; }

.cart-footer-actions {
    margin-top: 40px;
    border-top: 2px solid var(--midnight);
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 30px;
}

.cart-buttons {
    display: flex;
    gap: 20px;
}

.btn-clear {
    background: transparent;
    border: 1px solid #999;
    color: #999;
    padding: 15px 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}
.btn-clear:hover { border-color: red; color: red; }

.btn-checkout {
    background-color: var(--midnight);
    color: #fff;
    border: none;
    padding: 15px 40px;
    flex-grow: 1;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-checkout:hover { background-color: var(--gold); }

.checkout-section {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}
.checkout-desc { text-align: left; color: #666; margin-bottom: 30px; }

.btn-confirm-order {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--midnight);
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
}
.btn-confirm-order:hover { background-color: var(--gold); }

.order-success {
    text-align: center;
    padding: 100px 20px;
}
.success-icon { font-size: 4rem; color: var(--gold); margin-bottom: 20px; }
.order-success h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--midnight); }
.order-success p { color: #666; margin-bottom: 40px; }
.btn-home {
    text-decoration: none;
    border-bottom: 1px solid var(--midnight);
    color: var(--midnight);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}



.policy-hero {
    background-color: var(--midnight);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background-image: url('images/fog_pattern.jpg');
    background-blend-mode: soft-light;
    background-size: cover;
}

.policy-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: 3px;
    font-weight: 300;
}

.policy-hero .subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 10px;
    font-size: 0.9rem;
}

.last-updated {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

.policy-container {
    background-color: var(--bg-color);
    padding: 60px 20px 100px 20px;
}

.policy-content {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--midnight);
    margin-bottom: 40px;
}

.policy-divider {
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 40px 0;
}

article {
    margin-bottom: 50px;
}

article h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
}

article p {
    margin-bottom: 15px;
    font-weight: 300;
}

article ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

article ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}

article ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
    top: 3px;
}

article strong {
    font-weight: 600;
    color: var(--midnight);
}

.contact-box {
    background-color: #fff;
    border: 1px solid var(--gold);
    padding: 30px;
    margin-top: 20px;
}

.contact-box p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .policy-hero h1 { font-size: 2.5rem; }
    .policy-content { padding: 0 10px; }
}

.site-footer {
    background-color: var(--midnight);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 40px 20px;
    position: relative;
    border-top: 5px solid var(--stone-grey);
    text-align: center;
}

.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0.5;
}
.footer-decoration .line { width: 80px; height: 1px; background-color: var(--gold); }
.footer-decoration .symbol { font-size: 1.2rem; color: var(--gold); }

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: auto;

    object-fit: contain;
    
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    
    filter: none; 
}

.brand-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.footer-block h3 {
    padding-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
}

.footer-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
    margin: 2px auto 0;
}

.footer-nav a:hover { color: #fff; }
.footer-nav a:hover::after { width: 100%; }

.footer-contact p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}
.footer-contact a:hover { border-color: var(--gold); color: var(--gold); }

.working-hours {
    color: var(--gold) !important;
    font-style: italic;
    margin-top: 15px;
    font-family: var(--font-heading);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-nav a:hover { padding-left: 0; color: var(--gold); }
}


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--midnight);
    color: #fff;
    padding: 20px 40px;
    z-index: 9000;
    border-top: 2px solid var(--gold);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    
    transition: bottom 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 600px;
}

.cookie-content h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.cookie-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background-color: var(--gold);
    color: #fff;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.cookie-btn-accept:hover {
    background-color: #fff;
    color: var(--midnight);
}

.cookie-btn-decline {
    background-color: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn-decline:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}