/* =========================================
   1. BASICS & RESET
   ========================================= */

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

   :root {
    --bg-color: #121212;
    --bg-card: #1e1e1e;
    --bg-dark-accent: #161616;
    --text-main: #ffffff;
    --text-secondary: #aaaaaa;
    --gold: #d4af7a;
    --gold-hover: #b89360;
    --border-color: #333;
    --font-title: 'Philosopher', sans-serif;
    --font-main: 'Mulish', sans-serif;
}
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

.container, .container-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.btn-gold { background-color: var(--gold); color: #000; }
.btn-gold:hover { background-color: var(--gold-hover); }

.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background-color: var(--gold); color: #000; }

.section-title { font-size: 32px; margin-bottom: 40px; }

header { padding: 20px 0; border-bottom: 1px solid #333; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-title);
    font-size: 24px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}
.logo i { font-size: 28px; }

.nav-menu ul { display: flex; gap: 30px; }
.nav-menu a { font-size: 14px; text-transform: uppercase; color: var(--text-secondary); }
.nav-menu a:hover { color: var(--gold); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 13px; text-transform: uppercase; color: var(--text-secondary); }
.nav-links a:hover { color: var(--text-main); }
.brand { font-family: var(--font-title); font-size: 28px; color: var(--gold); text-align: center; }
.brand span { display: block; font-size: 12px; letter-spacing: 4px; color: var(--text-secondary); font-family: var(--font-main); }

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

.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, #2a2a2a 0%, #121212 70%);
}
.hero-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.hero-text { flex: 1; max-width: 600px; padding-right: 40px; }
.hero-text h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.2; }
.hero-text p { color: var(--text-secondary); margin-bottom: 30px; font-size: 16px; }
.hero-buttons { display: flex; gap: 20px; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image img {
    max-width: 500px;
    border-radius: 10px;
}
.macro-card img {
    object-position: center;
    height: 100%;
    width: 100%;
}
.hero-description {
    margin: 25px 0;
}

.info-strip { text-align: center; padding: 40px 0; color: var(--text-secondary); font-size: 14px; }
.info-strip span { margin: 0 15px; display: inline-block; }

.categories { padding: 60px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.cat-card { position: relative; height: 250px; background: var(--bg-card); border-radius: 8px; overflow: hidden; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; transition: transform 0.4s; opacity: 0.8; }
.cat-card:hover img { transform: scale(1.05); opacity: 1; }
.cat-title { position: absolute; bottom: 20px; left: 20px; font-size: 20px; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

.individual { padding: 60px 0; background-color: #181818; border-left: 3px solid var(--gold); }
.ind-inner h2 { color: var(--gold); font-size: 24px; margin-bottom: 10px; }
.ind-inner h3 { font-size: 32px; margin-bottom: 20px; }
.process-steps { color: var(--text-secondary); margin-bottom: 30px; font-size: 14px; }

.macro { padding: 60px 0; }
.macro-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.slider-nav i { margin-left: 15px; cursor: pointer; color: var(--gold); }
.macro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.macro-card { background: var(--bg-card); height: 240px; position: relative; border-radius: 6px; overflow: hidden; }
.macro-card span { position: absolute; bottom: 10px; left: 10px; font-size: 12px; font-weight: bold; }

.split-section { padding: 60px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.work-item { text-align: center; background: var(--bg-card); padding: 8px; border-radius: 8px; }
.work-item img {
    width: 100%;
    height: 150px;
    margin: 0 auto 10px;
}
.work-item h4 { font-size: 14px; margin-bottom: 5px; }
.work-item p { font-size: 12px; color: var(--text-secondary); }

.review-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { display: flex; gap: 15px; background: var(--bg-card); padding: 15px; border-radius: 8px; align-items: center; }
.review-img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}
.review-text p { font-size: 13px; font-style: italic; color: #ddd; }
.review-list {
    margin-bottom: 25px;
}

.footer-cta { text-align: center; padding: 60px 20px; background: #1a1a1a; border-top: 1px solid #333; }
.footer-cta h2 { margin-bottom: 20px; }

.product-hero { padding: 60px 0; }
.product-grid { display: grid; grid-template-columns: 100px 1fr 400px; gap: 40px; align-items: start; }

.gallery-thumbs { display: flex; flex-direction: column; gap: 15px; }
.thumb { width: 100%; aspect-ratio: 1; border: 1px solid var(--border-color); cursor: pointer; opacity: 0.6; transition: 0.3s; background: var(--bg-card); }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--gold); }

.main-image-container { background: radial-gradient(circle at center, #2a2a2a 0%, #121212 100%); border-radius: 4px; overflow: hidden; aspect-ratio: 4/4; display: flex; align-items: center; justify-content: center; }
.main-image-container img { width: 80%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

.product-info h1 { font-size: 36px; line-height: 1.2; margin-bottom: 20px; }
.price { font-size: 28px; color: var(--text-main); margin-bottom: 30px; font-weight: 300; }

.short-specs { margin-bottom: 30px; }
.spec-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; border-bottom: 1px solid #222; padding-bottom: 5px; }
.spec-label { color: var(--text-secondary); }
.spec-value { color: var(--text-main); font-weight: 500; }

.actions { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.custom-link { display: block; text-align: center; color: var(--gold); font-size: 13px; text-decoration: underline; margin-top: 10px; }

.details-section { padding: 20px 0 40px; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.detail-block h3 { margin-bottom: 20px; font-size: 22px; }
.detail-block p { color: var(--text-secondary); font-size: 14px; margin-bottom: 15px; }

.char-table { width: 100%; border-collapse: collapse; }
.char-table td { padding: 12px 0; border-bottom: 1px solid #222; font-size: 14px; }
.char-table td:first-child { color: var(--text-secondary); width: 40%; }

.accordion-item { border-bottom: 1px solid var(--border-color); }
details { padding: 20px 0; cursor: pointer; transition: 0.3s; }
summary { font-family: var(--font-title); font-size: 20px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--gold); font-size: 24px; font-weight: 300; }
details[open] summary::after { content: '-'; }
details p { margin-top: 15px; color: var(--text-secondary); font-size: 14px; }

.related-section { padding: 60px 0; background-color: #161616; }
.related-title { font-size: 32px; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.product-card { background: var(--bg-card); padding: 20px; text-align: center; transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.card-img { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-img img { max-height: 100%; }
.card-title { font-size: 16px; margin-bottom: 5px; color: var(--text-main); }
.card-price { color: var(--text-secondary); font-size: 14px; }

.custom-hero-bg {
    background: url(https://www.transparenttextures.com/patterns/black-linen.png), linear-gradient(to right, #121212, #1a1a1a);
    padding: 40px 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.custom-hero-bg {
    padding-bottom: 20px;
}
.info-strip {
    padding: 100px 0 0;
}
.custom-hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.hero-description {
    margin: 25px 0;
}
.cat-card:before, .macro-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 4.6);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0) 100%);
}
.cat-title, .macro-card span {
    z-index: 2;
}
.custom-text { flex: 1; }
.custom-text h1 { font-size: 52px; margin-bottom: 20px; line-height: 1.1; }
.custom-text p { color: var(--text-secondary); font-size: 18px; margin-bottom: 40px; }

.order-form-card {
    flex: 0 0 500px;
    background: #181818;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.upload-area { border: 1px dashed #444; padding: 30px; text-align: center; color: var(--text-secondary); margin-bottom: 20px; cursor: pointer; transition: 0.3s; font-size: 12px; }
.upload-area:hover { border-color: var(--gold); color: var(--gold); }

.form-group { margin-bottom: 15px; }
.form-control { width: 100%; background: #0f0f0f; border: 1px solid #333; padding: 12px; color: #fff; font-family: var(--font-main); font-size: 13px; }
.form-control:focus { outline: none; border-color: var(--gold); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
.portfolio-item { aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.portfolio-item {
    height: 300px;
    width: 100%;
}
.portfolio-item img { width: 100%; height: 100%; transition: 0.4s; }
.portfolio-item:hover img { transform: scale(1.05); }

.process-section { padding: 80px 0; background: var(--bg-dark-accent); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.process-step h4 { font-size: 16px; margin-bottom: 10px; text-transform: uppercase; }
.process-step p { font-size: 13px; color: #fff; }

.quality-section { padding: 80px 0; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.quality-img { position: relative; }
.quality-img img { border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.video-card { position: relative; aspect-ratio: 16/9; cursor: pointer; border-radius: 8px; overflow: hidden; }
.play-btn {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 50px; 
    height: 50px; 
    background: rgba(255,255,255,0.9); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #000; 
    transition: 0.3s;
    padding:5px 
}
.video-card:hover .play-btn { background: var(--gold); transform: translate(-50%, -50%) scale(1.1); }

.footer-idea-cta { background: #141414; padding: 80px 0; text-align: center; border-top: 1px solid #222; }

.main-footer, footer {
    background: #0f0f0f;
    padding: 60px 0;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #222;
}
.footer-grid, .footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-col h4, .f-col h4 { color: #fff; margin-bottom: 15px; font-family: var(--font-main); }
.footer-col ul li, .f-col ul li { margin-bottom: 8px; }
.socials i, .f-socials i { font-size: 18px; margin-right: 15px; color: #fff; transition: 0.3s; }
.socials i:hover, .f-socials i:hover { color: var(--gold); }

@media (max-width: 992px) {

    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text { padding-right: 0; margin-top: 20px; }
    .hero-buttons { justify-content: center; }
    .split-section { grid-template-columns: 1fr; }
    .macro-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid, .footer-cols { grid-template-columns: 1fr 1fr; }

    .product-grid { grid-template-columns: 1fr; grid-template-areas: "img" "info" "thumbs"; }
    .gallery-thumbs { flex-direction: row; grid-area: thumbs; justify-content: center;}
    .main-image-container { grid-area: img; }
    .product-info { grid-area: info; }
    .details-grid { grid-template-columns: 1fr; gap: 30px; }
    .thumb { width: 60px; }
    .header-inner { flex-direction: column; gap: 15px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }

    .custom-hero-flex { flex-direction: column; }
    .order-form-card { width: 100%; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
}

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

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    margin-left: 20px;
    color: var(--gold);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #1a1a1a;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: 0.3s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.mobile-links li {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.mobile-links a {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 992px) {
    .nav-menu.desktop-only { display: none; }
    .mobile-toggle { display: block; }
}

.page-header-section {
    padding: 40px 0;
    border-bottom: 1px solid #222;
    background: #161616;
}
.page-title { margin-bottom: 10px; font-size: 36px; }
.breadcrumbs { color: var(--text-secondary); font-size: 14px; }

.catalog-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.catalog-sidebar {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}
.filter-group:last-child { border-bottom: none; }

.filter-group h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.price-inputs input {
    width: 45%;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
}
.slider {
    width: 100%;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #0f0f0f;
    border: 1px solid #444;
}
.checkbox-container:hover input ~ .checkmark { background-color: #333; }
.checkbox-container input:checked ~ .checkmark { background-color: var(--gold); border-color: var(--gold); }
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 3px;
    height: 8px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.btn-sm {
    padding: 8px 0;
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        margin-bottom: 40px;
    }
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

.logo img {
    max-height: 50px;
    width: auto;
}

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

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.header-phone {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-main);
}

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

.btn-header {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
}

.icon-cart {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.lang-switcher {
    margin-left: 10px;
    display: inline-flex;
    gap: 5px;
}
.lang-switcher li {
    display: inline-block;
}
.lang-switcher img {
    width: 20px;
    vertical-align: middle;
}

.mobile-menu-contacts {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #333;
}
.mobile-phone {
    display: block;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
}
.mobile-socials {
    display: flex;
    gap: 15px;
}
.mobile-socials img {
    width: 24px;
}

@media (max-width: 1100px) {
    .btn-header { display: none; }
    .header-contacts { display: none; }
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-icons a i {
    font-size: 18px;
    color: var(--text-main);
    transition: 0.3s;
}
.header-icons a:hover i {
    color: var(--gold);
}

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

.icon-btn img, .mobile-toggle img {
    width: 22px;
    height: 22px;
    display: block;
    transition: 0.3s;
}

.icon-btn:hover img, .mobile-toggle:hover img {
    filter: invert(22%) sepia(33%) saturate(666%) hue-rotate(358deg) brightness(88%) contrast(88%);
    transform: scale(1.1);
}

.lang-item-dropdown {
    position: relative;
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-main);
}
.current-lang i {
    font-size: 10px;
    margin-top: 1px;
}

.lang-dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid #333;
    min-width: 60px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-radius: 4px;
    text-align: center;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.lang-dropdown-list li {
    display: block;
    margin: 0;
    padding: 5px 0;
}
.lang-dropdown-list a {
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
}
.lang-dropdown-list a:hover {
    color: var(--gold);
}

.lang-item-dropdown:hover .lang-dropdown-list {
    opacity: 1;
    visibility: visible;
    top: 120%;
}

.mobile-langs {
    display: flex;
    gap: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
.mobile-langs a {
    color: #fff;
}

.mobile-lang-row {
    display: flex !important;
    gap: 15px;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.mobile-lang-row li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none !important;
}

.mobile-lang-row a {
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
}
.mobile-lang-row .current-lang a {
    color: var(--gold);
}
.nav-menu ul li {
    position: relative;

    padding-bottom: 15px;
    margin-bottom: -15px;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 280px;

    background-color: var(--bg-card);
    border: 1px solid #333;
    border-top: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;

    z-index: 1000;
    padding: 10px 0;
    display: block;
}

.nav-menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    color: #ccc;
    text-transform: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: 0.2s;
    font-weight: 400;
}

.nav-menu .sub-menu a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--gold);
    padding-left: 30px;
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.menu-item-has-children > a {
    padding-right: 20px;
    position: relative;
}

.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    border: solid var(--gold);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: 0.3s;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

header {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    background: var(--bg-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
    margin-right: 30px;
    max-width: 300px;
}
.logo img {
    max-height: 60px;
    width: auto;
}

.header-right-column {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.header-top-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.header-phone {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-socials {
    display: flex;
    gap: 10px;
}
.soc-icon img {
    width: 25px;
    height: 25px;
    transition: 0.3s;
}

.btn-header {
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 1px;
}

.lang-item-dropdown {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    text-transform: uppercase;
}
.current-lang { display: flex; align-items: center; gap: 5px; }
.current-lang i { font-size: 10px; }

.header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}
.nav-menu a:hover {
    color: var(--gold);
}

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

.icon-btn img, .header-icons a i {
    width: 25px;
    height: 25px;
    display: block;
    transition: 0.3s;
}
.icon-btn:hover img, .header-icons a:hover i {
    filter: invert(25%) sepia(33%) saturate(666%) hue-rotate(358deg) brightness(88%) contrast(88%);
    transform: scale(1.1);
}

.header-icons a i { font-size: 18px; color: #fff; filter: none; }
.header-icons a:hover i { color: var(--gold); }

.icon-cart { position: relative; }
.cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    background: var(--gold);
    color: #000;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 1200px) {

    .header-top-row { gap: 15px; }
    .nav-menu ul { gap: 15px; }
}

@media (max-width: 992px) {

    .header-right-column {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .header-top-row, .nav-menu.desktop-only {
        display: none !important;
    }
    .header-bottom-row {
        width: auto;
    }
    .mobile-toggle {
        display: block !important;
        margin-left: 15px;
    }
}
.header-socials .soc-icon {
    background-color: #dddddd;
    padding: 5px;
    border-radius: 50%;
}
.soc-icon img {
    width: 22px;
    height: 22px;
}
.header-socials .soc-icon:hover {
    background-color: #d4af7a;
}

.individual {
    padding: 80px 0;
    background-color: #181818;
    border-left: 3px solid var(--gold);
    overflow: hidden;
}

.ind-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.ind-content {
    flex: 1;
    max-width: 600px;
}

.ind-content h2 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ind-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #fff;
}

.process-steps {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
}

.ind-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.ind-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #333;
    transition: transform 0.5s ease;
}

.ind-image:hover img {
    transform: scale(1.02);
    border-color: var(--gold);
}

@media (max-width: 992px) {
    .ind-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .ind-content {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .ind-image {
        width: 100%;
        max-width: 100%;
    }
}

.ind-image {
    flex: 1;
    max-width: 500px;
    position: relative;

    line-height: 0;
}

.ind-image img,
.ind-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #333;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.ind-image:hover img,
.ind-image:hover video {
    transform: scale(1.02);
    border-color: var(--gold);
}

.main-footer {
    background: #0f0f0f;
    padding: 60px 0 20px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #222;
    margin-top: auto;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 25px;
}

.footer-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.footer-info-item i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-menu-list li,
.footer-contacts-list li {
    margin-bottom: 12px;
}

.footer-menu-list a,
.footer-contacts-list a {
    color: #aaa;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-menu-list a:hover,
.footer-contacts-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-contacts-list i { color: var(--gold); }

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.f-soc-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.f-soc-icon img {
    width: 20px;
    height: 20px;
    transition: 0.3s;
}
.f-soc-icon:hover {
    border-color: var(--gold);
    background: #222;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
}
.attention-text {
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.copyright {
    color: #444;
    font-size: 11px;
}

#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    color: #000;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 990;
}
#scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTop:hover {
    background: #fff;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-window {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: #1a1a1a;
    border: 1px solid var(--gold);
    padding: 40px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}
.modal-window.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal-form {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.close-modal-form img {
    width: 100%;
    filter: invert(1);
    transition: 0.3s;
}
.close-modal-form:hover img {
    filter: invert(78%) sepia(33%) saturate(666%) hue-rotate(358deg) brightness(88%) contrast(88%);
}

.title-modal-forms {
    font-size: 24px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-title);
    text-transform: uppercase;
}

.cf7-form-wrapper input,
.cf7-form-wrapper textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-main);
}
.cf7-form-wrapper input[type="submit"] {
    background: var(--gold);
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}
.cf7-form-wrapper input[type="submit"]:hover {
    background: #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-info-item, .footer-contacts-list a {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

.footer-socials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-socials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
    margin: 0;
    width: 100%;
    list-style: none;
}

.product-card {
    display: block;
    background: var(--bg-card);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
    border: 1px solid transparent;
    transition: 0.3s;
    position: relative;
    text-decoration: none !important;
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-img {
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.card-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.card-title {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.4;
    min-height: 40px;
}

.card-price {
    color: var(--gold);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
.card-price del {
    color: #666;
    font-size: 12px;
    margin-right: 5px;
}

.card-btn-wrap .btn {
    width: 100%;
    font-size: 12px;
    padding: 10px 0;
}

.catalog-sidebar .widget {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}
.catalog-sidebar .widget-title,
.catalog-sidebar h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price_slider_amount .button {
    background: var(--gold) !important;
    color: #000 !important;
    border-radius: 0 !important;
    font-weight: 600;
}
.ui-slider .ui-slider-range { background: var(--gold) !important; }
.ui-slider .ui-slider-handle { background: #fff !important; }

.full-width-promo-block {
    width: 100%;
    clear: both;
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        margin-bottom: 40px;
        background: #1a1a1a;
        padding: 20px;
        border-radius: 8px;
    }
}

.catalog-toolbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    margin-top: 25px;
    border: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

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

.custom-select, .woocommerce-ordering select {
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
}
.custom-select:hover, .woocommerce-ordering select:hover {
    border-color: var(--gold);
}

.price-filter-dropdown {
    position: relative;
}
.filter-toggle-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.filter-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #1a1a1a;
    border: 1px solid var(--gold);
    padding: 20px;
    z-index: 100;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price-filter-dropdown:hover .filter-dropdown-content {
    opacity: 1;
    visibility: visible;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #333;
}
.widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--gold);
}
.widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #fff;
}
.widget_price_filter .price_slider_amount .button {
    background: var(--gold);
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    font-size: 12px;
}

.woocommerce ul.products,
.catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
    text-decoration: none;
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card-img {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}
.card-img img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 14px;
    color: #fff;
    margin-bottom: auto;
    line-height: 1.4;
    font-weight: 500;
}

.card-price {
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
    margin: 10px 0;
}

.card-btn-wrap .btn {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 992px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
    .catalog-toolbar-wrapper { flex-direction: column; align-items: stretch; }
    .filters-left, .filters-right { justify-content: space-between; }
}
@media (max-width: 576px) {
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
}
.catalog-content section.individual {
    padding: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
    position: relative;

}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-card-link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}

.card-img {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}
.card-img img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .card-img img {
    transform: scale(1.05);
}

.card-title {
    font-size: 14px;
    color: #fff;
    margin-bottom: auto;
    line-height: 1.4;
    font-weight: 500;
}

.card-price {
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
    margin-top: 10px;
}

.card-btn-wrap {
    margin-top: auto;
    width: 100%;
}

.card-btn-wrap .btn {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    text-transform: uppercase;
    display: block;
}

.cart-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.toast-content i {
    color: var(--gold);
    font-size: 18px;
}

.catalog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    gap: 10px;
    border: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
    float: none;
    border: none;
    overflow: hidden;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #1a1a1a;
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.woocommerce-pagination .page-numbers a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: #222;
}

.woocommerce-pagination .page-numbers span.current {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    cursor: default;
}

.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev {
    font-size: 18px;
}

.product-card .card-btn-wrap a.button {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    text-align: center;
    border-radius: 0;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;

    background-color: var(--gold) !important;
    color: #000 !important;
    border: 1px solid var(--gold) !important;
    transition: 0.3s;
}

.product-card .card-btn-wrap a.button:hover {
    background-color: var(--gold-hover) !important;
    color: #000 !important;
}

.product-card .card-btn-wrap a.button.loading {
    opacity: 0.7;
    cursor: wait;
}

.product-card .card-btn-wrap a.button.added {
    background-color: #fff !important;
    color: #000 !important;
}

.woocommerce nav.woocommerce-pagination {
    border: none !important;
    margin-top: 50px;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    border: none !important;
    padding: 0;
    list-style: none;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li {
    float: none !important;
    border: none !important;
    margin: 0 !important;
    overflow: visible !important;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 600;
    color: #888 !important;
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    min-width: auto !important;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li a:hover {
    background-color: #333 !important;
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li span.current {
    background-color: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
    cursor: default;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li a.next,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a.prev {
    font-size: 18px;
    color: var(--gold) !important;
}

.product-hero {
    padding-top: 40px;
    padding-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #333;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
    border-radius: 4px;
}
.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
    border-color: var(--gold);
    opacity: 1;
}

.main-image-container {
    width: 100%;
    position: relative;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}
.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s ease;
}
.onsale-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gold);
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 12px;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.price-box {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 30px;
}
.price-box del {
    color: #666;
    font-size: 16px;
    margin-right: 10px;
}

.short-specs {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}
.spec-label {
    color: var(--text-secondary);
}
.spec-value {
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.product-actions-custom {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.woo-add-btn {
    flex: 1;
    min-width: 150px;
}
.woo-add-btn form.cart {
    margin: 0;
    display: flex;
    gap: 10px;
}

.woo-add-btn .quantity .qty {
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    height: 46px;
    width: 60px;
    text-align: center;
    border-radius: 4px;
}

.woo-add-btn button[type="submit"] {
    flex-grow: 1;
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
    height: 46px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.woo-add-btn button[type="submit"]:hover {
    background: var(--gold-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    height: 46px;
    padding: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: #000;
}

.custom-link {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 13px;
    margin-top: 10px;
}
.custom-link:hover { color: var(--gold); }

.details-section {
    padding-bottom: 60px;
}
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.detail-block h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--gold);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.product-description-content {
    color: #ccc;
    line-height: 1.6;
}

.char-table {
    width: 100%;
    border-collapse: collapse;
}
.char-table td {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
}
.char-table tr:last-child td { border-bottom: none; }
.char-table td:first-child { color: var(--text-secondary); width: 40%; }

.accordion {
    border-top: 1px solid #333;
}
.accordion-item {
    border-bottom: 1px solid #333;
}
.accordion-item summary {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    transition: 0.3s;
}
.accordion-item summary:hover { color: var(--gold); }

.accordion-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
}
.accordion-item details[open] summary::after {
    content: '-';
}
.acc-content {
    padding-bottom: 20px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.related-section {
    padding-bottom: 80px;
}
.related-section > h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .gallery-thumbs {
        flex-direction: row;
        order: 2;
    }
    .main-image-container {
        order: 1;
    }
    .product-info {
        order: 3;
    }
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.related-section {
    border-top: 1px solid #333;
    padding-top: 60px;
}
.related-section h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.related.products ul.products,
.related.products .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    margin: 0 !important;
    padding: 0 !important;
}
.related.products li.product {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    .gallery-thumbs {
        flex-direction: row;
        order: 2;
    }
    .main-image-container {
        order: 1;
    }
    .product-description-content {
        column-count: 1;
    }
    .related.products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .related.products ul.products {
        grid-template-columns: 1fr !important;
    }
}
.product-description-content {
    column-count: 2;
}
.detail-block .full-width-specs {
    margin-top: 24px;
}

.acc-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

.acc-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

.acc-content li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.acc-content strong {
    color: #fff;
    font-weight: 600;
}

.acc-content p em {
    color: var(--gold);
    font-style: italic;
    display: block;
    margin-top: 15px;
}
input.display-none {
    display: none;
}
.woo-add-btn {
    display: flex;
    flex-direction: column;
}
.product-actions-custom {
    display: flex;
    flex-direction: column;
}
button.btn.btn-outline.modal-forms {
    padding: 20px;
    max-width: 320px;
}
.box-buttons_cart {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.box-buttons_cart button.add-to-cart_post_product {
    max-width: 220px;
}
.box-buttons_cart .yith-wcwl-add-to-wishlist {
    margin-top: 0;
}
.box-buttons_cart .yith-wcwl-add-to-wishlist svg {
    color: #fff !important;
}
.box-buttons_cart .yith-wcwl-add-to-wishlist span + a {
    display: none;
}
.yith-wcwl-add-to-wishlist.exists svg.yith-wcwl-icon-svg {
    fill: #fff !important;
}
.product-actions-custom p.stock.available-on-backorder {
    display: none;
}
.woocommerce div.product form.cart {
    margin-bottom: 0 !important;
}
.woocommerce div.product form.cart .button + a.added_to_cart.wc-forward {
    position: absolute;
    bottom: -30px;
    font-size: 14px;
    left: 85px;
    color: #d4af7a;
}
.box-buttons_cart {
    position: relative;
}

.product-info .product-actions-custom button.single_add_to_cart_button.button.alt,
.product-info button.add-to-cart_post_product.single_add_to_cart_button.button.alt {
    background-color: var(--gold) !important;
    color: #000 !important;
    border: 1px solid var(--gold) !important;
    border-radius: 0 !important;
    font-family: var(--font-main) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    height: 50px !important;
    line-height: 1 !important;
    width: 100%;
    transition: 0.3s all ease !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info .product-actions-custom button.single_add_to_cart_button.button.alt:hover,
.product-info button.add-to-cart_post_product.single_add_to_cart_button.button.alt:hover {
    background-color: #b89360 !important;
    border-color: #b89360 !important;
    color: #000 !important;
}

.product-info button.single_add_to_cart_button.disabled {
    background-color: #333 !important;
    color: #777 !important;
    border-color: #333 !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.custom-text h1 span { color: var(--gold); }

.custom-cf7-wrapper .form-group {
    margin-bottom: 15px;
}

.custom-cf7-wrapper .form-control {
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px;
    padding: 0 10px;
    color: #333;
}

.custom-cf7-wrapper select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

.custom-cf7-wrapper .btn-gold.full-width {
    width: 100%;
    cursor: pointer;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: 0.3s;
}
.portfolio-item:hover img {
    transform: scale(1.02);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.process-step h3 {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 10px;
}
.step-icon {
    height: 50px;
    margin-bottom: 15px;
}

.quality-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}
.quality-text { flex: 1; }
.quality-img { flex: 1; }
.quality-img img { width: 100%; border-radius: 8px; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.video-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}
.video-card:hover img { opacity: 0.5; }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 122, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #000;
    font-size: 24px;
}
.play-btn:hover {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}
.video-modal-content video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.3);
}
.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 992px) {
    .portfolio-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-grid { flex-direction: column; }
    .custom-hero-flex { flex-direction: column; }
    .order-form-card { margin-top: 30px; width: 100%; }
}
@media (max-width: 576px) {
    .portfolio-grid, .video-grid, .process-grid { grid-template-columns: 1fr; }
}

.video-grid {
    display: block;
    margin: 0 -15px;
}

.video-slide-item {
    padding: 0 15px;
    outline: none;
}

.video-card {
    position: relative;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    width: 100%;

}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}
.video-card:hover img { opacity: 0.5; }

.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}
.reviews-slider .slick-prev::before,
.reviews-slider .slick-next::before {
    font-size: 30px;
    color: var(--gold);
    opacity: 1;
}
.reviews-slider .slick-prev { left: -30px; }
.reviews-slider .slick-next { right: -30px; }

.reviews-slider .slick-dots li button:before {
    color: #fff;
}
.reviews-slider .slick-dots li.slick-active button:before {
    color: var(--gold);
}

.order-form-card {
    background-color: #1a1a1a;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.upload-area-visual {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.upload-area-visual::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

.order-form-card p {
    margin-bottom: 20px;
}

.order-form-card label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
}

.order-form-card input[type="text"],
.order-form-card input[type="tel"],
.order-form-card input[type="email"],
.order-form-card select,
.order-form-card textarea {
    width: 100%;
    background-color: #0f0f0f;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0 15px;
    height: 50px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.order-form-card select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.order-form-card input:focus,
.order-form-card select:focus {
    border-color: var(--gold);
    background-color: #151515;
}

.order-form-card input[type="file"] {
    background: transparent;
    border: 1px dashed #444;
    padding: 10px;
    height: auto;
    font-size: 13px;
    cursor: pointer;
}
.order-form-card input[type="file"]:hover {
    border-color: var(--gold);
}

.order-form-card input[type="submit"] {
    background-color: var(--gold);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    height: 50px;
}

.order-form-card input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 122, 0.5);
}

.display-none {
    display: none !important;
}

.wpcf7-spinner {
    position: absolute;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .order-form-card {
        padding: 25px 20px;
    }
    .upload-area-visual {
        font-size: 18px;
    }
}

.order-form-card form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-form-card form p {
    margin-bottom: 0;
    width: 100%;
}

.order-form-card form p:has(input[type="file"]) {
    grid-column: 1 / -1;
}

.order-form-card form p:has(input[type="submit"]) {
    grid-column: 1 / -1;
    margin-top: -35px;
}

.hidden-fields-container,
.display-none,
.wpcf7-response-output {
    display: none !important;
}

.order-form-card label {
    letter-spacing: 0.5px;
}

.order-form-card input:not([type="submit"]):not([type="file"]),
.order-form-card select {
    width: 100%;
    height: 50px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 0 15px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
    -webkit-appearance: none;
}

.order-form-card input:focus,
.order-form-card select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 122, 0.2);
}

.order-form-card select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.order-form-card input[type="file"] {
    width: 100%;
    padding: 15px;
    border: 1px dashed #444;
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    color: #aaa;
    cursor: pointer;
    font-size: 13px;
}
.order-form-card input[type="file"]:hover {
    border-color: var(--gold);
    color: #fff;
}

.order-form-card input[type="submit"] {
    width: 100%;
    height: 55px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
}
.order-form-card input[type="submit"]:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .order-form-card form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
section.custom-hero-bg.order-hero-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2026/02/0d7283ab-0517-4488-9648-4b5e16f4d008.png);
    opacity: 0.3;
    bottom: 0;
}

section.custom-hero-bg.order-hero-bg {
    position: relative;
    padding: 30px 0;
}

section.custom-hero-bg.order-hero-bg .container {
    position: relative;
}

section.custom-hero-bg.order-hero-bg .hero-desc {
    max-width: 425px;
}

.upload-area-visual {
    margin-bottom: 15px;
    font-size: 18px;
}

.woocommerce-page .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
    background-color: #000;
    color: #ccc;
}

.woocommerce h2, .woocommerce h3, .woocommerce h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.woocommerce a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.woocommerce a:hover {
    color: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--gold);
    background-color: #222;
}

.woocommerce form .form-row label {
    color: #aaa;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}
.woocommerce form .form-row .required {
    color: var(--gold);
    text-decoration: none;
}

.select2-container--default .select2-selection--single {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 4px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    padding-left: 15px !important;
}
.select2-dropdown {
    background-color: #1a1a1a !important;
    border: 1px solid var(--gold) !important;
}
.select2-results__option {
    color: #ccc !important;
}
.select2-results__option--highlighted[aria-selected] {
    background-color: var(--gold) !important;
    color: #000 !important;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt {
    background-color: var(--gold) !important;
    color: #000 !important;
    border: 1px solid var(--gold) !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 30px;
    transition: 0.3s !important;
    cursor: pointer;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #666 !important;
    opacity: 0.7;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background-color: #1a1a1a;
    color: #fff;
    border-top: 3px solid var(--gold);
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--gold);
}
.woocommerce-error {
    border-top-color: #e74c3c;
}
.woocommerce-error::before {
    color: #e74c3c;
}

.woocommerce table.shop_table {
    border: 1px solid #333;
    border-radius: 8px;
    border-collapse: separate;
    background-color: #1a1a1a;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 40px;
}

.woocommerce table.shop_table th {
    background-color: #111;
    color: var(--gold);
    text-transform: uppercase;
    padding: 15px;
    font-weight: 600;
    border-bottom: 2px solid #333;
}

.woocommerce table.shop_table td {
    border-top: 1px solid #333;
    padding: 20px 15px;
    color: #fff;
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-thumbnail img {
    width: 80px;
    border-radius: 4px;
    border: 1px solid #333;
}

.woocommerce table.shop_table td.product-name a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
.woocommerce table.shop_table td.product-name a:hover {
    color: var(--gold);
}

.woocommerce table.shop_table .amount {
    color: var(--gold);
    font-weight: 700;
}

.woocommerce a.remove {
    color: #ff5b5b !important;
    border: 1px solid #ff5b5b;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
}
.woocommerce a.remove:hover {
    background-color: #ff5b5b;
    color: #fff !important;
}

.woocommerce .quantity .qty {
    background-color: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    width: 60px;
    height: 40px;
    text-align: center;
}

.woocommerce-cart .coupon {
    display: flex;
    gap: 10px;
}
.woocommerce-cart .coupon .input-text {
    width: 200px !important;
    height: 46px;
}

.cart-collaterals .cart_totals {
    float: right;
    width: 40%;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
}

.cart-collaterals .cart_totals h2 {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 20px;
}

.cart-collaterals .cart_totals table.shop_table {
    border: none;
    background: transparent;
    margin: 0;
}
.cart-collaterals .cart_totals table.shop_table th {
    background: transparent;
    border-bottom: 1px solid #333;
    padding-left: 0;
    font-size: 14px;
    color: #aaa;
}
.cart-collaterals .cart_totals table.shop_table td {
    background: transparent;
    border-bottom: 1px solid #333;
    text-align: right;
    padding-right: 0;
}
.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    border-bottom: none;
    padding-top: 20px;
    font-size: 18px;
    color: #fff;
}
.cart-collaterals .cart_totals .order-total .amount {
    font-size: 22px;
}

@media (max-width: 768px) {
    .cart-collaterals .cart_totals {
        width: 100%;
        float: none;
    }
    .woocommerce-cart .coupon {
        width: 100%;
        flex-direction: column;
    }
    .woocommerce-cart .coupon .input-text {
        width: 100% !important;
    }

    .woocommerce table.shop_table_responsive tr td {
        background: #1a1a1a !important;
        display: block;
        text-align: right;
        clear: both;
    }
    .woocommerce table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        float: left;
        font-weight: 700;
        color: var(--gold);
    }
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    float: none;
    width: 100%;
    max-width: 100%;
}

#order_review_heading {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.woocommerce-checkout-review-order-table {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border-bottom: 1px solid #333;
    padding: 15px;
    color: #fff;
}
.woocommerce-checkout-review-order-table tfoot th {
    color: #aaa;
    text-transform: uppercase;
    font-size: 13px;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    border-bottom: none;
    font-size: 18px;
    font-weight: bold;
    color: var(--gold);
}

#payment {
    background-color: #1a1a1a !important;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #333;
}

#payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #333;
}

#payment ul.payment_methods li {
    margin-bottom: 15px;
}

#payment ul.payment_methods li input[type=radio] {
    margin-right: 10px;
    accent-color: var(--gold);
}

#payment ul.payment_methods li label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

#payment div.payment_box {
    background-color: #222 !important;
    color: #ccc !important;
    padding: 15px;
    margin: 10px 0 20px;
    border-radius: 4px;
    font-size: 13px;
    position: relative;
}
#payment div.payment_box::before {
    content: "";
    display: block;
    border: 8px solid #222;
    border-color: transparent transparent #222 transparent;
    position: absolute;
    top: -16px;
    left: 20px;
}

#place_order {
    width: 100%;
    margin-top: 20px;
    height: 60px;
    font-size: 18px;
    background-color: var(--gold) !important;
    color: #000 !important;
}
#place_order:hover {
    background-color: #fff !important;
    box-shadow: 0 0 20px rgba(212, 175, 122, 0.4);
}

@media (max-width: 992px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

td.product-remove {
    max-width: 20px;
    width: 20px;
}

.container-box.cart-page {
    margin-bottom: 40px;
    margin-top: 20px;
}

.woocommerce-page .cart-collaterals .cart_totals {
    padding: 0;
    background-color: transparent;
    border: none;
}
.woocommerce table.shop_table tbody tr:nth-last-child(1) {
    display: none;
}

td.product-remove {
    width: 50px;
    min-width: 50px;
}
.woocommerce-page .col2-set::before {
    display: none;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 100%;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 100%;
}

textarea#order_comments {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    min-height: 130px;
}

.woocommerce-page .col2-set::before {
    display: none !important;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 100%;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 100%;
}

textarea#order_comments {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    min-height: 130px;
}

.woocommerce .col2-set, .woocommerce-page .col2-set {
    margin-bottom: 0;
    gap: 20px;
}
.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}
.woocommerce a.btn.btn-gold.btn-header {
    color: #000;
}

.product-description-content * {
    font-size: 14px !important;
    padding-bottom: 10px;
    font-family: var(--font-main) !important;
}
.product-description-content {
    padding-bottom: 15px;
}

main#main > nav.woocommerce-breadcrumb {
    max-width: 1200px;
    margin: 15px auto 0;
}
.box-buttons_cart {
    margin-bottom: 25px;
}
.woocommerce .catalog-content a.btn.btn-gold {
    color: #000;
}
.hero-slider-wrapper {
    position: relative;
    width: calc(60% - 40px);
    overflow: hidden;
    background: transparent;
}
.hero-slide-item {
    height: 600px;
    position: relative;
    width: 100%;
}
.hero-slide-item img,
.hero-slide-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slider .slick-dots {
    bottom: 0px;
    width: 100%;
    text-align: center;
    position: absolute;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 10;
}
.hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
}
.hero-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
    transition: 0.3s;
}
.hero-slider .slick-dots li.slick-active button {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}
.hero-slider .slick-dots li {
    font-size: 0;
}
.slick-dots li button:before {
    display: none !important;
}
@media (max-width: 768px) {
    .hero-slide-item {
        height: 400px;
    }
}

.page-template-page-family-crests {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-title);
}

.crest-hero {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.crest-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;

    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.crest-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.crest-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.crest-hero-text h1 {
    font-size: 56px;
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-family: var(--font-title);
}

.gold-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-bottom: 40px;
}

.btn-gold-gradient {
    display: inline-block;
    padding: 15px 40px;

    background: linear-gradient(to bottom, var(--gold), var(--gold-hover));
    color: #000;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(212, 175, 122, 0.3);
    transition: 0.3s;
}

.btn-gold-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 122, 0.5);
    color: #000;
    background: linear-gradient(to bottom, var(--gold-hover), var(--gold));
}

.crest-hero-img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.8));
    animation: floatRing 6s ease-in-out infinite;
}

@keyframes floatRing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.crest-about {
    padding: 100px 0;
    background: var(--bg-dark-accent);
}

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

.crest-about-content h2 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 400;
    font-family: var(--font-title);
}

.crest-text-block {
    font-family: var(--font-main);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.crest-about-image img {
    width: 100%;
    border-radius: 4px;
}

.crest-gallery {
    padding: 80px 0 120px;
    background: var(--bg-color);
    position: relative;
}

.section-title-gold {
    text-align: left;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-title);
}

.crest-slide {
    padding: 20px;
    transition: 0.5s;
}

.crest-frame {
    border: 2px solid #555;
    padding: 10px;
    transition: 0.5s;
    background: var(--bg-dark-accent);
}

.crest-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: sepia(20%) contrast(110%);
}

.slick-center .crest-frame {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

.slick-center .crest-frame img {
    filter: none;
}

.crest-nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 30px;
}

.crest-prev, .crest-next {
    background: transparent;
    border: 1px solid #555;
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.crest-prev:hover, .crest-next:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.crest-slider-wrapper .slick-dots li button:before {
    color: var(--text-main);
    opacity: 0.2;
}

.crest-slider-wrapper .slick-dots li.slick-active button:before {
    color: var(--gold);
    opacity: 1;
}

.crest-cta {
    padding: 100px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--bg-card);
    text-align: center;
}

.cta-box h2 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-title);
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-family: var(--font-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-block;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 122, 0.4);
}
.crest-nav {
    margin-top: -80px;
    margin-bottom: 25px;
}

.crest-prev {
    transform: rotate(270deg);
    margin-top: -25px;
}

.crest-next {
    margin-top: -25px;
    transform: rotate(90deg);
}
section.crest-gallery {
    background: url(https://www.transparenttextures.com/patterns/black-linen.png), linear-gradient(to right, #121212, #1a1a1a);
}
.munber_process-step {
    font-size: 35px;
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0.8;
    font-family: var(--font-title);
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    right: -15px;
    top: -15px;
}
img.step-icon {
    height: 450px;
    width: 100%;
}
.process-step {
    position: relative;
}
.process-step h4 {
    margin-top: -70px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .crest-hero-grid, .crest-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gold-line { margin: 0 auto 30px; }
    .crest-hero-img { order: -1; margin-bottom: 40px; }
    .crest-about-image { margin-top: 40px; }
    .crest-hero-text h1 { font-size: 40px; }
}
.fix-socials-row {
    position: fixed;
    right: 10px;
    top: calc(40% - 50px);
    gap: 10px;
    display: flex;
    flex-direction: column;
    z-index: 9;
}
.fix-socials-row .f-soc-icon {
    width: 55px;
    height: 55px;
}
.fix-socials-row .f-soc-icon img {
    width: 30px;
    height: 30px;
}
.text_macro-header .section-title {
    margin-bottom: 0;
}
.crest-hero-img img {
    max-height: 600px;
}
.crest-hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.text_process-step {
    padding: 0 10px;
    position: relative;
}

.img_process-step {
    position: relative;
}

.munber_process-step {
    z-index: 2;
}

.img_process-step:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #161616;
    background: linear-gradient(0deg, rgba(22, 22, 22, 0.8) 1%, rgba(22, 22, 22, 0.4) 35%, rgba(22, 22, 22, 0) 100%);
}
.cat-card.is-hidden { display: none; }

.cat-card.cat-card--more {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card.cat-card--more .cat-title {
    position: relative;
    bottom: 0;
    left: 0;
}



























@media screen and (max-width: 960px) {
    .woocommerce-checkout .container-box {
        margin: 30px 0px;
    }
    .woocommerce-checkout #payment ul.payment_methods {
        padding: 0;
    }
    .woocommerce form .form-row label {
        text-transform: none;
    }

    .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
        font-size: 18px;
        padding: 0;
    }
    .hero-image, .hero-image img {
        width: 100%;
        max-width: 100%;
    }
    .hero-text h1 {
        font-size: 32px;
    }

    .info-strip {
        padding-top: 50px;
    }

    .categories {
        padding: 40px 0;
    }

    .individual {
        padding: 40px 25px;
    }

    .ind-content h2 {
        font-size: 20px;
    }

    .ind-wrapper {
        padding: 0;
    }

    .ind-content h3 {
        font-size: 32px;
    }

    .ind-content {
        margin-bottom: 0;
    }

    .macro {
        padding: 40px 0;
    }

    .macro-header .section-title {
        margin-bottom: 0;
    }

    .macro-card {
        height: 160px;
    }

    .split-section {
        padding: 40px 20px;
    }

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

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-socials-wrapper {
        display: flex;
        align-items: center;
    }
    .mobile-menu.active {
        width: 320px;
    }

    .mobile-links li {
        border-bottom: none;
        margin-bottom: 0;
    }

    .mobile-links a {
        text-transform: none;
    }

    .mobile-links li ul.sub-menu {
        padding-left: 15px;
        margin: 20px 0 0;
    }

    .mobile-links li ul.sub-menu a {
        font-size: 14px;
    }

    .mobile-links .lang-item a {
        text-transform: uppercase;
    }

    .mobile-links .lang-item {
        display: inline-flex;
        width: 50px;
    }

    .mobile-menu-contacts {}

    .mobile-menu-contacts a.mobile-phone {
        display: flex;
    }
    .woocommerce ul.products, .catalog-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .page-header-section {
        padding: 0;
    }
    .catalog-toolbar-wrapper {
        gap: 0;
    }
    .filter-toggle-btn {
        font-size: 12px;
        height: 38px;
    }
    .filters-left, .filters-right {
        gap: 10px;
    }
    .card-img {
        padding-bottom: 0;
    }
    .woocommerce img, .woocommerce-page img {
        height: 220px;
    }

    .individual {
        border: 3px solid var(--gold);
    }
    .related.products ul.products, .related.products .products {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .filters-left {
        margin-bottom: 10px;
    }

    .filters-right {
        gap: 0;
        width: 100%;
        display: flex;
    }

    .filters-right form.woocommerce-ordering {
        margin: 0;
    }

    .catalog-pagination {
        margin: 0;
    }
    .product-hero-wrapper > section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-hero-wrapper > section.related-section {
        padding-left: 0;
        padding-right: 0;
    }

    .product-description-content {
        column-count: 1;
    }

    .acc-content {
        padding-bottom: 0;
    }

    .accordion-item summary {
        padding-top: 0;
    }

    .product-grid {
        grid-template-areas:
        "img"
        "thumbs"
        "info";
        gap: 20px;
    }

    .gallery-thumbs .thumb {
        width: 50px;
        height: 50px;
    }

    .wishlist_product_post {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .box-buttons_cart {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .woo-add-btn {
        margin-bottom: 15px;
    }

    button.btn.btn-outline.modal-forms {
        margin: 0 auto;
        width: 300px;
    }

    .product-hero {
        padding-bottom: 40px;
    }
    main#main > nav.woocommerce-breadcrumb {
        padding: 0 20px;
        margin-bottom: 0;
        margin-top: 15px;
    }
    .custom-text h1 {
        font-size: 32px;
    }

    .custom-hero-flex {
        gap: 10px;
    }

    .process-section {
        padding: 40px 0;
    }

    .quality-section {
        padding: 40px 20px;
    }

    .quality-grid {
        padding: 0;
    }
    .crest-hero-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .crest-hero-img {
        margin-bottom: 0;
    }

    .crest-hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .crest-about {
        padding: 40px 0;
    }

    .crest-hero-grid, .crest-about-grid {
        gap: 20px;
    }

    .crest-gallery {
        padding: 40px 0;
    }

    .section-title-gold {
        font-size: 32px;
        width: 50%;
        line-height: 1;
    }

    .crest-slide {
        padding: 0;
    }

    .crest-slider-wrapper {
        margin-top: 40px;
        margin-bottom:  0 !important;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .crest-cta {
        padding: 50px 0;
    }

    .fix-socials-row .f-soc-icon {
        width: 40px;
        height: 40px;
    }
    .fix-socials-row .f-soc-icon img {
        width: 20px;
        height: 20px;
    }

    .container.hero-content {
        width: 100%;
    }
    .hero-slider-wrapper {
        width: 100%;
    }

    .hero-slider .slick-dots {
        bottom: -20px;
    }
    .macro-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 40px;
        flex-direction: column;
        gap: 15px;
    }
    .process-grid {
        gap: 40px;
    }

}