/*
Theme Name: Workshop Template
Theme URI: www.workshop.ro
Author: Workshop Team
Author URI: https://www.workshop.ro
Version: 1.0
Text Domain: www.workshop.ro
*/

:root {
    --gold: #B89F32;
    --gold-dark: #9c8626;
}

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

html {
    font-size: 62.5%;
}

a {
    text-decoration: none;
}

body {
    color: black;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    overflow-x: hidden;
}

h1 {
    font-size: 6.4rem;
    line-height: 80px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

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

h2 {
    font-size: 4.6rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

h5 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    line-height: 30px;
}

p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    padding: 0;
}

dl, ol, ul {
    margin-bottom: 0;
}

ul {
    font-size: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

img{
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

/* Dividers */

.mt-100{
    margin-top: 100px;
}

.mb-100{
    margin-bottom: 100px;
}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.block_title{
    margin-bottom: 50px;
}

.block_title h2{
    font-weight: 600;
}

.block_title p{
    font-size: 1.6rem;
    margin-top: 15px;
    font-weight: 400;
    line-height: 26px;
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
    background-color: var(--gold);
    padding: 10px 0;
}

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

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar__left a,
.top-bar__address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-bar__left a:hover {
    opacity: 0.8;
}

.top-bar__left i {
    font-size: 1.4rem;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar__right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    transition: background-color 0.3s;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar__menu {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.main-logo {
    flex-shrink: 0;
}

.header_logo {
    max-width: 200px;
    height: auto;
}

.menu_container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.menu_container ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu_container ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
    white-space: nowrap;
}

.menu_container ul li a:hover,
.menu_container ul li.current-menu-item a {
    color: var(--gold);
}

/* Navbar Actions */
.navbar__actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.navbar__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 2rem;
    transition: color 0.3s;
}

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

.navbar__cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--gold);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.navbar__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.navbar__login:hover {
    background-color: var(--gold-dark);
    color: #fff;
}

.navbar__login i {
    font-size: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger__line {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero_section h1{
    margin-bottom: 36px;
}

.hero_section p{
    color: #333;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.hero_section .d-flex{
    gap: 20px;
    margin-top: 40px;
}

.main_button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.btn_outline{
    color: black;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: #FFF;
    box-shadow: 2px 2px 0 0 #CAAC29;
}

.btn_outline:hover{
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.main_button:hover{
    background-color: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    color: #fff !important;
}

.images_hero h2{
    position: absolute;
    bottom: 22%;
    left: 21%;
}

.images_hero h2 span{
    color: #FFF;
    border-left: 5px solid #FFF;
    background: #CAAC29;
    text-align: center;
    font-family: "Libre Baskerville";
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 62px;
    padding: 0 10px;
}

.mission_right{
    padding-left: 40px;
}

.mission_right h2{
    color: #000;
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 62px;
    margin-bottom: 25px;
}

.mission_right p{
    margin-bottom: 25px;
    color: #454443;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.mission_right ul{
    margin-bottom: 25px;
}

.mission_right ul li {
    position: relative;
    color: #454443;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
    padding-left: 30px;
}

.mission_right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: block;
    background-image: url('./assets/images/check.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.who_item{
    border-radius: 37px;
    background: rgba(202, 172, 41, 0.40);
    padding: 20px;
}

.who_item1{
    background: rgba(202, 172, 41, 0.40);
}

.who_item img{
    width: 100%;
    height: 100%;
    border-radius: 34px;
}

.who_item h3{
    color: #454443;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 24px;
}

.who_item p{
    color: #454443;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.services_left{
    padding-right: 20px;
}

.icon_services{
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 44px;
    border: 1px solid #CAAC29;
}

.icon_services span{
    color: #CAAC29;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.services_section .grid-3{
    gap: 24px;
}

.services_item{
    border-radius: 30px;
    background: #F9F9F9;
}

.services_item .content{
    padding: 34px;
}

.services_item .category{
    margin: 0 auto;
    width: 80%;
    padding: 10px 0;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    text-align: center;
    border-radius: 18px 18px 0 0;
    background: #CAAC29;
}

.services_item img{
    width: 100%;
    height: 297px;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.image_cover{
    position: relative;
}

.image_cover .d-flex{
    position: absolute;
    bottom: 16px;
    left: 16px;
    gap: 5px;
}

.image_cover .d-flex span{
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.90);
}

.services_item p{
    margin-top: 37px;
    color: #CAAC29;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 37px;
}

.services_item p span{
    color: #CAAC29;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.services_item ul{
    margin-bottom: 50px;
}

.services_item ul li{
    position: relative;
    padding-left: 30px;
}

.services_item ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: block;
    background-image: url('./assets/images/si_check-fill.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.reviews_slider .swiper-slide .comma{
    width: 19px;
    height: 31px;
}

.reviews_slider .swiper-slide h3{
    color: #201B16;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.reviews_slider .swiper-slide p{
    margin-top: 10px;
    color: #201B16;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 12px;
}

.images_profile{
    padding-right: 13px;
}

.images_profile img{
    position: relative;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.stars{
    margin-top: 5px;
    display: flex;
    gap: 2px;
}

.stars img{
    width: 15px;
    height: 15px;
}

.contact_section .row{
    background: #F5F5F5;
    border-radius: 16px;
}

.contact_form{
    padding: 40px;
}

.contact_form h2{
    margin-bottom: 50px;
}

.contact_form .wpcf7-form > p:empty{
    display: none;
}

.contact_form .cf7-fields-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact_form .cf7-field{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_form .cf7-label-text{
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact_form .cf7-input{
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #fff;
    font-size: 1.6rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact_form .cf7-input::placeholder{
    color: #999;
    font-size: 1.5rem;
}

.contact_form .cf7-input:focus{
    border-color: var(--gold);
}

.contact_form .cf7-submit-wrap{
    margin-top: 28px;
}

.contact_form .cf7-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact_form .cf7-submit:hover{
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.contact_form .wpcf7-spinner{
    display: none;
}

.contact_form .wpcf7-response-output{
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 1.4rem;
    margin: 10px 0 0;
}

.contact_right img{
    width: 100%;
    height: 453px;
    object-fit: contain;
}


/* ===========================
   FOOTER
   =========================== */
.site-footer {
    margin-top: 100px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding: 60px 0 40px;
}

/* Column 1: Logo & Contact */
.footer__col--info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    display: inline-block;
    max-width: 200px;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.footer__link {
    color: #1a1f36;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer__link--underline {
    text-decoration: underline;
}

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

.footer__legal {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.footer__legal a {
    color: #1a1f36;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: var(--gold);
}

/* Column 2: Navigation */
.footer__col--nav {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav li a {
    color: #1a1f36;
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer__nav li a:hover {
    color: var(--gold);
}

/* Column 3: Social & Hours */
.footer__col--social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__social-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__social-label {
    font-size: 1.3rem;
    font-weight: 400;
    color: #6b7280;
}

.footer__social-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1f36;
}

/* Copyright Bar */
.footer__bottom {
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    margin-top: 20px;
}

.footer__bottom p {
    font-size: 1.4rem;
    font-weight: 400;
    color: #9ca3af;
}


/* ===========================
   FOOTER
   =========================== */
.site-footer {
    margin-top: 100px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding: 60px 0 40px;
}

/* Column 1: Logo & Contact */
.footer__col--info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    display: inline-block;
    max-width: 200px;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.footer__link {
    color: #1a1f36;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer__link--underline {
    text-decoration: underline;
}

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

.footer__legal {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.footer__legal a {
    color: #1a1f36;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: var(--gold);
}

/* Column 2: Navigation */
.footer__col--nav {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav li a {
    color: #1a1f36;
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer__nav li a:hover {
    color: var(--gold);
}

/* Column 3: Social & Hours */
.footer__col--social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__social-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__social-label {
    font-size: 1.3rem;
    font-weight: 400;
    color: #6b7280;
}

.footer__social-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1f36;
}

/* Copyright Bar */
.footer__bottom {
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    margin-top: 20px;
}

.footer__bottom p {
    font-size: 1.4rem;
    font-weight: 400;
    color: #9ca3af;
}
/* ===========================
   ABOUT PAGE
   =========================== */

.about-label {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-label--light {
    color: rgba(255, 255, 255, .65);
}

/* Hero */
.about-hero__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-hero__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-hero__badge span {
    font-size: 1.8rem;
    font-weight: 800;
    margin-right: 4px;
}

.about-hero__content {
    padding-left: 56px;
}

.about-hero__content h1 {
    margin-bottom: 8px;
}

.about-hero__subtitle {
    font-size: 2rem;
    color: #666;
    margin-bottom: 24px;
}

.about-hero__content > p:last-of-type {
    margin-bottom: 32px;
}

/* Povestea personala */
.about-story {
    background: #f8f7f3;
    padding: 100px 0;
}

.about-story__image {
    border-radius: 12px;
    overflow: hidden;
    margin-left: 40px;
}

.about-story__content {
    padding-right: 56px;
}

.about-story__content h2 {
    margin-bottom: 24px;
}

.about-story__content h2 span,
.about-timeline h2 span,
.about-credentials h2 span,
.about-values h2 span,
.about-why h2 span,
.about-cta__box h2 span {
    color: var(--gold);
}

.about-story__content p {
    margin-bottom: 16px;
    color: #444;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    opacity: .25;
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    width: 50%;
    padding: 0 48px 48px;
}

.timeline__item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 48px;
    padding-left: 0;
}

.timeline__item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 48px;
    padding-right: 0;
}

.timeline__dot {
    position: absolute;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--gold);
    z-index: 2;
}

.timeline__item:nth-child(odd) .timeline__dot { right: -7px; }
.timeline__item:nth-child(even) .timeline__dot { left: -7px; }

.timeline__card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.timeline__year {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(184, 159, 50, .1);
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.timeline__card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.timeline__card p {
    font-size: 1.5rem;
    color: #555;
    line-height: 25px;
}

/* Experienta & Certificari */
.about-credentials .row {
    gap: 24px;
}

.about-credentials .col-md-6 {
    flex: 1;
    max-width: calc(50% - 12px);
}

.credentials__box {
    background: #f8f7f3;
    border-radius: 12px;
    padding: 48px 36px;
    height: 100%;
}

.credentials__box h2 {
    font-size: 3.2rem;
    margin-bottom: 28px;
}

.credentials__box--dark {
    background: #1a1a2e;
    color: #fff;
}

.credentials__box--dark h2 {
    color: #fff;
}

.credentials__box--dark h2 span {
    color: var(--gold);
}

.credentials__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credentials__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.credentials__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(184, 159, 50, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.credentials__item h4 {
    font-size: 1.9rem;
    margin-bottom: 4px;
}

.credentials__item p {
    font-size: 1.5rem;
    color: #666;
    line-height: 24px;
}

.certifications__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.certification__card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 22px;
}

.certification__badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.certification__card h4 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    color: #fff;
}

.certification__card p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .55);
    line-height: 22px;
}

/* Valori */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color .2s;
}

.value__card:hover {
    border-color: var(--gold);
}

.value__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(184, 159, 50, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold);
}

.value__card h3 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.value__card p {
    font-size: 1.5rem;
    color: #666;
    line-height: 24px;
}

/* De ce eu */
.about-why__image {
    border-radius: 12px;
    overflow: hidden;
}

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

.about-why__content {
    padding-left: 56px;
}

.about-why__content h2 {
    margin-bottom: 28px;
}

.why__reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why__number {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(184, 159, 50, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why__item h4 {
    font-size: 1.9rem;
    margin-bottom: 4px;
}

.why__item p {
    font-size: 1.5rem;
    color: #666;
    line-height: 24px;
}

/* Stats */
.about-stats {
    background: #1a1a2e;
    padding: 72px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat__item {
    color: #fff;
}

.stat__number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat__plus {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--gold);
}

.stat__item p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
}

/* CTA Final */
.about-cta__box {
    background: #f8f7f3;
    border: 1px solid #e8e5d8;
    border-radius: 12px;
    padding: 72px 48px;
    text-align: center;
}

.about-cta__box h2 {
    margin-bottom: 14px;
}

.about-cta__box > p {
    font-size: 1.7rem;
    color: #666;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}


/* ===========================
   WORKSHOP - ARCHIVE / LISTING
   =========================== */
.workshops-archive {
    padding-bottom: 80px;
}

.workshops-archive__hero {
    text-align: center;
    padding: 80px 0 60px;
}

.workshops-archive__hero h1 {
    margin-bottom: 16px;
}

.workshops-archive__hero h1 span {
    color: var(--gold);
}

.workshops-archive__hero p {
    font-size: 1.7rem;
    font-weight: 400;
    color: #666;
    max-width: 640px;
    margin: 0 auto;
    line-height: 28px;
}

.workshops-archive .woocommerce-result-count,
.workshops-archive .woocommerce-ordering {
    display: none;
}

.workshops-archive ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Workshop Card */

/* ============================
   WORKSHOPS SLIDER – Home Page
   ============================ */
.workshops_slider_section .workshops_slider {
    overflow: hidden;
}

.workshops_slider .swiper-slide {
    height: auto;
}

.workshop-slide__inner {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.workshop-slide__inner:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.workshop-slide__image {
    position: relative;
    overflow: hidden;
}

.workshop-slide__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.workshop-slide__inner:hover .workshop-slide__image img {
    transform: scale(1.05);
}

.workshop-slide__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.workshop-slide__category a {
    color: #fff;
    text-decoration: none;
}

.workshop-slide__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.workshop-slide__title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 28px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.workshop-slide__title:hover {
    color: var(--gold);
}

.workshop-slide__excerpt {
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    line-height: 22px;
    margin-bottom: 16px;
}

.workshop-slide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.workshop-slide__price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.workshop-slide__price del {
    font-size: 1.5rem;
    color: #999;
    font-weight: 400;
}

.workshop-slide__price ins {
    text-decoration: none;
}

.workshop-slide__footer .main_button {
    font-size: 1.4rem;
    padding: 8px 20px;
}

.workshops_slider_nav {
    margin-top: 30px;
}

.swiper-button-prev-ws,
.swiper-button-next-ws {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    color: #333;
    flex-shrink: 0;
}

.swiper-button-prev-ws:hover,
.swiper-button-next-ws:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.swiper-pagination-ws {
    position: static;
    display: flex;
    gap: 6px;
}

.swiper-pagination-ws .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: background 0.3s;
}

.swiper-pagination-ws .swiper-pagination-bullet-active {
    background: var(--gold);
}
.workshop-card {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

.workshop-card__inner {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.workshop-card__inner:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.workshop-card__image {
    position: relative;
    overflow: hidden;
}

.workshop-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.workshop-card__inner:hover .workshop-card__image img {
    transform: scale(1.05);
}

.workshop-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.workshop-card__category a {
    color: #fff;
}

.workshop-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.workshop-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.workshop-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #888;
}

.workshop-card__title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 28px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.workshop-card__title:hover {
    color: var(--gold);
}

.workshop-card__excerpt {
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    line-height: 22px;
    margin-bottom: 16px;
}

.workshop-card__trainer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.workshop-card__trainer span {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
}

.workshop-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.workshop-card__price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.workshop-card__price del {
    font-size: 1.5rem;
    color: #999;
    font-weight: 400;
}

.workshop-card__price ins {
    text-decoration: none;
}

.workshop-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s;
}

.workshop-card__btn:hover {
    gap: 10px;
    color: var(--gold-dark);
}


/* ===========================
   WORKSHOP - SINGLE PRODUCT
   =========================== */
.workshop-page {
    padding-bottom: 80px;
}

.workshop-page .woocommerce-breadcrumb {
    padding: 20px 0;
    font-size: 1.4rem;
    color: #888;
}

.workshop-page .woocommerce-breadcrumb a {
    color: var(--gold);
}

/* Header */
.workshop-header {
    margin-bottom: 48px;
}

.workshop-header__category {
    display: inline-block;
    background: rgba(184, 159, 50, 0.1);
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.workshop-header__category a {
    color: var(--gold);
}

.workshop-header__title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.workshop-header__excerpt {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 28px;
    color: #666;
    max-width: 800px;
    margin-bottom: 20px;
}

.workshop-header__meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.workshop-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Layout: main + sidebar */
.workshop-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* Main Content */
.workshop-main {
    min-width: 0;
}

.workshop-section {
    margin-bottom: 48px;
}

.workshop-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.workshop-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.workshop-section__intro {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.workshop-description p {
    font-size: 1.6rem;
    font-weight: 400;
    color: #444;
    line-height: 28px;
    margin-bottom: 16px;
}

/* Checklist */
.workshop-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.workshop-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 26px;
    color: #444;
}

.workshop-checklist__icon {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Benefits */
.workshop-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.workshop-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f7f3;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.workshop-benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.workshop-benefit-item span:last-child {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    line-height: 24px;
}

/* Trainer */
.workshop-trainer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f7f3;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.workshop-trainer__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.workshop-trainer__info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.workshop-trainer__info span {
    font-size: 1.4rem;
    color: #888;
    font-weight: 400;
}

/* Sidebar */
.workshop-sidebar {
    position: sticky;
    top: 100px;
}

.workshop-sidebar__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.workshop-sidebar__image {
    width: 100%;
    overflow: hidden;
}

.workshop-sidebar__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.workshop-sidebar__excerpt {
    padding: 20px 32px;
    border-bottom: 1px solid #f0f0f0;
}

.workshop-sidebar__excerpt p{
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 24px;
    color: #555;
}

.workshop-sidebar__price {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px 32px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.workshop-sidebar__price .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.workshop-sidebar__price .price del {
    font-size: 1.8rem;
    color: #aaa;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.workshop-sidebar__price .price del::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 1.5px;
    background: #aaa;
    transform: rotate(-8deg);
}

.workshop-sidebar__price .price ins {
    text-decoration: none;
}

.workshop-sidebar__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 32px;
}

.workshop-sidebar__details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.workshop-sidebar__details li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.workshop-sidebar__details li div {
    display: flex;
    flex-direction: column;
}

.workshop-sidebar__details li strong {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-sidebar__details li span {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
}

.workshop-sidebar__spots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(184, 159, 50, 0.08);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin: 0 32px 24px;
}

.workshop-sidebar__spots-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.workshop-sidebar__spots-header strong {
    font-weight: 700;
    font-size: 1.5rem;
}

.workshop-sidebar__spots-bar {
    width: 100%;
    height: 6px;
    background: rgba(184, 159, 50, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.workshop-sidebar__spots-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.workshop-sidebar__spots-urgent {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c0392b;
    letter-spacing: 0.03em;
}

/* Add to cart in sidebar */
.workshop-sidebar__cart {
    padding: 0 32px;
}

.workshop-sidebar__cart .cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.workshop-sidebar__cart .quantity {
    display: none;
}

.workshop-sidebar__cart .single_add_to_cart_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.workshop-sidebar__cart .single_add_to_cart_button:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* Product meta in sidebar */
.workshop-sidebar__card .product_meta {
    margin-top: 20px;
    padding: 16px 32px 32px;
    border-top: 1px solid #f0f0f0;
    font-size: 1.3rem;
    color: #888;
}

.workshop-sidebar__card .product_meta span {
    display: block;
    margin-bottom: 6px;
}

.workshop-sidebar__card .product_meta a {
    color: var(--gold);
}

/* WooCommerce native tabs override */
.workshop-main .woocommerce-tabs {
    margin-top: 16px;
}

.workshop-main .woocommerce-tabs .tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}

.workshop-main .woocommerce-tabs .tabs li {
    margin: 0;
}

.workshop-main .woocommerce-tabs .tabs li a {
    display: block;
    padding: 12px 24px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #888;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.workshop-main .woocommerce-tabs .tabs li.active a {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.workshop-main .woocommerce-tabs .panel {
    font-size: 1.6rem;
    line-height: 28px;
    color: #444;
}

.workshop-main .woocommerce-tabs .panel h2 {
    display: none;
}

/* Related products */
.workshop-related {
    margin-top: 80px;
}

.workshop-related .related.products > h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.workshop-related ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* WooCommerce Pagination */
.woocommerce nav.woocommerce-pagination {
    margin-top: 48px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* ===========================
   WooCommerce Notices – Modern Toast Style
   =========================== */
.woocommerce-notices-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    max-width: 460px;
    width: 100%;
    pointer-events: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    outline: none;
    background: #fff;
    border: none;
    border-left: 4px solid var(--gold);
    border-top: none;
    border-radius: 12px;
    padding: 18px 48px 18px 20px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a2e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    animation: afx-notice-slide-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    list-style: none;
}

.woocommerce-message.afx-notice-hiding,
.woocommerce-info.afx-notice-hiding,
.woocommerce-error.afx-notice-hiding,
.woocommerce-error li.afx-notice-hiding {
    animation: afx-notice-slide-out 0.3s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

/* Success notice (message) */
.woocommerce-message {
    border-left-color: #22c55e;
}

/* Info notice */
.woocommerce-info {
    border-left-color: var(--gold);
}

/* Error notice */
.woocommerce-error {
    border-left-color: #ef4444;
    padding: 0;
    background: none;
    box-shadow: none;
    flex-direction: column;
    animation: none;
}

.woocommerce-error li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-left: 4px solid #ef4444;
    border-radius: 12px;
    padding: 18px 48px 18px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a2e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    animation: afx-notice-slide-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    list-style: none;
}

/* Icons via ::before pseudo-element */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.woocommerce-message::before {
    color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.woocommerce-info::before {
    color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B89F32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E");
}

.woocommerce-error li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
}

/* Close button */
.afx-notice-close {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.afx-notice-close:hover {
    color: #1a1a2e;
}

.afx-notice-close svg {
    width: 16px;
    height: 16px;
}

/* Links inside notices */
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: auto;
    white-space: nowrap;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover {
    color: var(--gold);
}

/* "View cart" button styling */
.woocommerce-message a.button.wc-forward {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.woocommerce-message a.button.wc-forward:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* Progress bar at bottom of notice */
.afx-notice-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 0 12px;
    animation: afx-notice-timer 5s linear forwards;
}

.woocommerce-message .afx-notice-progress {
    background: #22c55e;
}

.woocommerce-info .afx-notice-progress {
    background: var(--gold);
}

.woocommerce-error li .afx-notice-progress {
    background: #ef4444;
}

/* Animations */
@keyframes afx-notice-slide-in {
    from {
        opacity: 0;
        transform: translateY(100%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes afx-notice-slide-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(100%) scale(0.95);
    }
}

@keyframes afx-notice-timer {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* ===========================
   AFX BUTTONS (Cart & Checkout)
   =========================== */
.afx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.afx-btn--primary {
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    border: 1px solid #CAAC29;
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
}

.afx-btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
    box-shadow: none;
}

.afx-btn--outline {
    background: #fff;
    border: 1px solid #CAAC29;
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #333;
}

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

.afx-btn--secondary {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #555;
    font-weight: 500;
    padding: 12px 24px;
    font-size: 1.4rem;
}

.afx-btn--secondary:hover {
    background: #eee;
    border-color: #ccc;
}

.afx-btn--full {
    width: 100%;
}

/* ===========================
   CART PAGE
   =========================== */
.afx-cart__header {
    margin-bottom: 40px;
}

.afx-cart__header h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.afx-cart__count {
    font-size: 1.5rem;
    color: #888;
    font-weight: 400;
}

.afx-cart__layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: flex-start;
}

/* Cart Items */
.afx-cart__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.afx-cart-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.afx-cart-item:first-child {
    padding-top: 0;
}

.afx-cart-item__image {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
}

.afx-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.afx-cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.afx-cart-item__name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.afx-cart-item__name a {
    color: #222;
    transition: color 0.3s;
}

.afx-cart-item__name a:hover {
    color: var(--gold);
}

.afx-cart-item__price {
    display: block;
    font-size: 1.4rem;
    color: #888;
    margin-top: 4px;
}

.afx-cart-item__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.afx-cart-item__quantity .quantity {
    display: flex;
    align-items: center;
}

.afx-cart-item__quantity .quantity .qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s;
}

.afx-cart-item__quantity .quantity .qty:focus {
    border-color: var(--gold);
}

.afx-cart-item__subtotal {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-left: auto;
}

.afx-cart-item__remove .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #999;
    background: #f5f5f5;
    transition: all 0.3s;
}

.afx-cart-item__remove .remove:hover {
    background: #fee;
    color: #e74c3c;
}

/* Cart Bottom Actions */
.afx-cart__bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.afx-cart__coupon {
    display: flex;
    gap: 8px;
}

.afx-cart__coupon .input-text {
    height: 44px;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    outline: none;
    min-width: 200px;
    transition: border-color 0.3s;
}

.afx-cart__coupon .input-text:focus {
    border-color: var(--gold);
}

/* Cart Totals Sidebar */
.afx-cart-totals {
    background: #fafafa;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 120px;
}

.afx-cart-totals h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
}

.afx-cart-totals__rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.afx-cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.5rem;
    color: #555;
}

.afx-cart-totals__row span:last-child {
    font-weight: 600;
    color: #333;
}

.afx-cart-totals__row--total {
    border-bottom: none;
    padding-top: 20px;
    margin-top: 4px;
}

.afx-cart-totals__row--total span:first-child {
    font-size: 1.7rem;
    font-weight: 600;
    color: #222;
}

.afx-cart-totals__row--total span:last-child {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.afx-cart-totals .wc-proceed-to-checkout {
    margin-top: 24px;
}

.afx-cart-totals__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 1.3rem;
    color: #999;
}

.afx-cart-totals__secure svg {
    color: #999;
}

/* WooCommerce shipping in cart totals */
.afx-cart-totals .shipping th,
.afx-cart-totals .shipping td {
    padding: 14px 0;
    font-size: 1.5rem;
    border: none;
}

/* Cart Empty */
.afx-cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.afx-cart-empty__icon {
    margin-bottom: 24px;
}

.afx-cart-empty h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.afx-cart-empty p {
    font-size: 1.6rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 32px;
}

/* ===========================
   CHECKOUT PAGE
   =========================== */
.afx-checkout__header {
    margin-bottom: 40px;
}

.afx-checkout__header h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Checkout Steps */
.afx-checkout__steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.afx-checkout__step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.afx-checkout__step:hover {
    color: #888;
}

.afx-checkout__step--active {
    color: var(--gold);
    font-weight: 600;
}

.afx-checkout__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    font-size: 1.3rem;
    font-weight: 700;
    color: #aaa;
}

.afx-checkout__step--active .afx-checkout__step-num {
    background: var(--gold);
    color: #fff;
}

.afx-checkout__step-separator {
    display: block;
    width: 40px;
    height: 2px;
    background: #eee;
    margin: 0 12px;
}

/* Checkout Layout */
.afx-checkout__layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: flex-start;
}

/* Checkout Sections */
.afx-checkout__section {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.afx-checkout__section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.afx-checkout__section-header svg {
    color: var(--gold);
    flex-shrink: 0;
}

.afx-checkout__section-header h3 {
    font-size: 2rem;
    font-weight: 600;
}

/* Checkout form field styling */
.afx-checkout__section .form-row {
    margin-bottom: 16px;
}

.afx-checkout__section .form-row label {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.afx-checkout__section .form-row .input-text,
.afx-checkout__section .form-row select,
.afx-checkout__section .form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.afx-checkout__section .form-row .input-text:focus,
.afx-checkout__section .form-row select:focus,
.afx-checkout__section .form-row textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 159, 50, 0.1);
}

.afx-checkout__section .form-row textarea {
    min-height: 100px;
    resize: vertical;
}

.afx-checkout__section .form-row .select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.afx-checkout__section .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1.5rem;
    padding: 0;
    line-height: 48px;
}

.afx-checkout__section .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

/* Order Review Sidebar */
.afx-checkout__order-review {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 120px;
}

.afx-checkout__order-review > h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
}

.afx-checkout__order-review > h3 svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Review order table */
.afx-checkout__order-review .shop_table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}

.afx-checkout__order-review .shop_table thead {
    display: none;
}

.afx-checkout__order-review .shop_table tbody td {
    padding: 10px 0;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
}

.afx-checkout__order-review .shop_table tbody td.product-name {
    color: #444;
}

.afx-checkout__order-review .shop_table tbody td.product-total {
    text-align: right;
    font-weight: 600;
    color: #333;
}

.afx-checkout__order-review .shop_table tfoot tr {
    border: none;
}

.afx-checkout__order-review .shop_table tfoot th,
.afx-checkout__order-review .shop_table tfoot td {
    padding: 12px 0;
    font-size: 1.5rem;
    border-top: 1px solid #eee;
    border-bottom: none;
}

.afx-checkout__order-review .shop_table tfoot td {
    text-align: right;
}

.afx-checkout__order-review .shop_table tfoot .order-total th,
.afx-checkout__order-review .shop_table tfoot .order-total td {
    font-size: 1.8rem;
    font-weight: 700;
    padding-top: 16px;
    border-top: 2px solid #eee;
}

.afx-checkout__order-review .shop_table tfoot .order-total td {
    color: var(--gold-dark);
}

/* Payment section in checkout */
.afx-checkout__order-review #payment {
    margin-top: 24px;
    background: transparent;
    padding: 0;
}

.afx-checkout__order-review #payment .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border: none;
}

.afx-checkout__order-review #payment .payment_methods li {
    padding: 16px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.afx-checkout__order-review #payment .payment_methods li:has(input:checked) {
    border-color: var(--gold);
    background: #fdf9e8;
}

.afx-checkout__order-review #payment .payment_methods li label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
}

.afx-checkout__order-review #payment .payment_methods li img {
    max-height: 24px;
    width: auto;
}

.afx-checkout__order-review #payment .payment_box {
    padding: 12px 0 0 26px;
    font-size: 1.3rem;
    color: #777;
    background: transparent;
}

.afx-checkout__order-review #payment .payment_box::before {
    display: none;
}

/* Place order button */
.afx-checkout__order-review #payment .place-order {
    padding: 0;
    margin: 0;
}

.afx-checkout__order-review #payment #place_order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.afx-checkout__order-review #payment #place_order:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: none;
}

/* Checkout coupon & login toggle banners */
.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-form-login-toggle .woocommerce-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fdfcf7 0%, #f9f6ec 100%);
    border: 1px solid rgba(184, 159, 50, 0.15);
    border-left: 4px solid var(--gold);
    border-top: none;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(184, 159, 50, 0.06);
    transition: border-color 0.3s ease;
}

.woocommerce-form-coupon-toggle .woocommerce-info:hover,
.woocommerce-form-login-toggle .woocommerce-info:hover {
    border-left-color: var(--gold-dark);
}

.woocommerce-form-coupon-toggle .woocommerce-info::before,
.woocommerce-form-login-toggle .woocommerce-info::before {
    color: var(--gold);
    font-size: 1.6rem;
}

.woocommerce-form-coupon-toggle .woocommerce-info a,
.woocommerce-form-login-toggle .woocommerce-info a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.woocommerce-form-coupon-toggle .woocommerce-info a:hover,
.woocommerce-form-login-toggle .woocommerce-info a:hover {
    color: var(--gold);
    border-bottom-color: transparent;
}

/* Coupon & login forms */
.checkout_coupon,
.woocommerce-form-login {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.checkout_coupon {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
}

.checkout_coupon > p:first-of-type {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #555;
    width: 100%;
}

.checkout_coupon .form-row {
    margin: 0;
    padding: 0;
}

.checkout_coupon .form-row-first {
    flex: 1;
    min-width: 200px;
}

.checkout_coupon .form-row-last {
    flex-shrink: 0;
}

.checkout_coupon .form-row .input-text,
.woocommerce-form-login .form-row .input-text {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    color: #1a1a2e;
    background: #fafafa;
    outline: none;
    transition: all 0.3s ease;
}

.checkout_coupon .form-row .input-text::placeholder {
    color: #aaa;
    font-weight: 400;
}

.checkout_coupon .form-row .input-text:focus,
.woocommerce-form-login .form-row .input-text:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 159, 50, 0.1);
}

.checkout_coupon .form-row-last .button,
.checkout_coupon button[name="apply_coupon"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gold);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.checkout_coupon .form-row-last .button:hover,
.checkout_coupon button[name="apply_coupon"]:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 12px rgba(184, 159, 50, 0.3);
    transform: translateY(-1px);
}

.checkout_coupon .clear {
    display: none;
}

/* Terms checkbox */
.woocommerce-terms-and-conditions-wrapper {
    margin: 16px 0;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.woocommerce-terms-and-conditions-wrapper label {
    font-size: 1.3rem;
    color: #666;
}

.woocommerce-terms-and-conditions-wrapper a {
    color: var(--gold);
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.afx-thankyou {
    max-width: 700px;
    margin: 0 auto;
}

.afx-thankyou__status {
    text-align: center;
    padding: 40px 20px;
}

.afx-thankyou__icon {
    margin-bottom: 20px;
}

.afx-thankyou__status h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.afx-thankyou__status p {
    font-size: 1.6rem;
    color: #666;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.afx-thankyou__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.afx-thankyou__details {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.afx-thankyou__details h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
}

.afx-thankyou__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.afx-thankyou__detail-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px 20px;
}

.afx-thankyou__label {
    display: block;
    font-size: 1.3rem;
    color: #999;
    font-weight: 400;
    margin-bottom: 4px;
}

.afx-thankyou__detail-card strong {
    font-size: 1.5rem;
    color: #333;
}

.afx-thankyou__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* WooCommerce order details table on thankyou */
.afx-thankyou .woocommerce-order-details {
    margin-top: 32px;
}

.afx-thankyou .woocommerce-order-details h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.afx-thankyou .woocommerce-table--order-details {
    width: 100%;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
}

.afx-thankyou .woocommerce-table--order-details thead th {
    background: #fafafa;
    padding: 14px 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.afx-thankyou .woocommerce-table--order-details td {
    padding: 14px 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid #f0f0f0;
}

.afx-thankyou .woocommerce-table--order-details tfoot th {
    padding: 14px 20px;
    font-size: 1.4rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.afx-thankyou .woocommerce-table--order-details tfoot td {
    text-align: right;
}

/* Customer details on thankyou */
.afx-thankyou .woocommerce-customer-details {
    margin-top: 32px;
}

.afx-thankyou .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.afx-thankyou .woocommerce-column--billing-address,
.afx-thankyou .woocommerce-column--shipping-address {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px;
}

.afx-thankyou .woocommerce-column--billing-address h2,
.afx-thankyou .woocommerce-column--shipping-address h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.afx-thankyou .woocommerce-column--billing-address address,
.afx-thankyou .woocommerce-column--shipping-address address {
    font-size: 1.4rem;
    line-height: 24px;
    color: #555;
    font-style: normal;
}


/* ===========================
   CAREERS PAGE
   =========================== */

.careers-label {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.careers-label--light {
    color: rgba(255, 255, 255, .8);
}

/* Hero */
.careers-hero__content h1 {
    margin-bottom: 20px;
}

.careers-hero__subtitle {
    font-size: 1.8rem;
    color: #555;
    line-height: 30px;
    margin-bottom: 8px;
}

.careers-hero__actions {
    gap: 16px;
    margin-top: 32px;
}

.careers-hero__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 40px;
}

.careers-hero__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Cui se adresează */
.careers-audience {
    background: #f8f7f3;
    padding: 100px 0;
}

.careers-audience__image {
    border-radius: 12px;
    overflow: hidden;
    margin-left: 40px;
}

.careers-audience__content {
    padding-right: 56px;
}

.careers-audience__content h2 {
    margin-bottom: 28px;
}

.careers-audience__content h2 span {
    color: var(--gold);
}

.careers-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.careers-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    line-height: 26px;
}

.careers-checklist li svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

/* Beneficii */
.careers-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.careers-benefit__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color .3s, transform .3s;
}

.careers-benefit__card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.careers-benefit__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(184, 159, 50, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.careers-benefit__card h3 {
    font-size: 2.1rem;
    margin-bottom: 12px;
}

.careers-benefit__card p {
    font-size: 1.5rem;
    color: #666;
    line-height: 24px;
}

/* Etapele de formare - Timeline vertical */
.careers-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 720px;
    margin: 0 auto;
}

.careers-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    opacity: .25;
}

.careers-timeline__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 40px;
}

.careers-timeline__item:last-child {
    padding-bottom: 0;
}

.careers-timeline__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px #fff, 0 0 0 8px rgba(184, 159, 50, .2);
}

.careers-timeline__card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    border: 1px solid #f0f0f0;
    flex: 1;
}

.careers-timeline__card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.careers-timeline__card p {
    font-size: 1.5rem;
    color: #555;
    line-height: 25px;
}

/* Mentorat */
.careers-mentorship__image {
    border-radius: 12px;
    overflow: hidden;
}

.careers-mentorship__content {
    padding-left: 56px;
}

.careers-mentorship__content h2 {
    margin-bottom: 16px;
}

.careers-mentorship__content h2 span {
    color: var(--gold);
}

.careers-mentorship__content > p {
    margin-bottom: 24px;
    color: #444;
}

/* Statistici */
.careers-stats {
    background: #1a1a2e;
    padding: 72px 0;
}

/* Dezvoltare profesională */
.careers-growth__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.careers-growth__card {
    background: #f8f7f3;
    border-radius: 12px;
    padding: 36px;
    position: relative;
    transition: box-shadow .3s;
}

.careers-growth__card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.careers-growth__number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(184, 159, 50, .15);
    line-height: 1;
    margin-bottom: 16px;
}

.careers-growth__card h3 {
    font-size: 2.1rem;
    margin-bottom: 12px;
}

.careers-growth__card p {
    font-size: 1.5rem;
    color: #555;
    line-height: 25px;
}

/* Formular aplicare */
.careers-apply {
    background: #1a1a2e;
    padding: 72px 0;
}

.careers-apply .row {
    align-items: center;
}

.careers-apply__info {
    padding-right: 48px;
}

.careers-apply__info h2 {
    color: #fff;
    margin-bottom: 20px;
}

.careers-apply__info h2 span {
    color: var(--gold);
}

.careers-apply__info > p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.6rem;
    line-height: 26px;
    margin-bottom: 32px;
}

.careers-apply__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.careers-apply__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .85);
    font-size: 1.5rem;
    font-weight: 500;
}

.careers-apply__feature svg {
    flex-shrink: 0;
    color: var(--gold);
}

.careers-apply__form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
}

.careers-apply__form h3 {
    font-size: 2.4rem;
    margin-bottom: 28px;
}

.careers-apply__form .wpcf7-form > p:empty {
    display: none;
}

.careers-apply__form .cf7-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.careers-apply__form .cf7-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.careers-apply__form .cf7-label-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
}

.careers-apply__form .cf7-input,
.careers-apply__form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #fff;
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.careers-apply__form .cf7-input:focus,
.careers-apply__form .wpcf7-form-control:focus {
    border-color: var(--gold);
}

.careers-apply__form .cf7-input::placeholder,
.careers-apply__form .wpcf7-form-control::placeholder {
    color: #999;
    font-size: 1.5rem;
}

.careers-apply__form textarea.wpcf7-form-control {
    min-height: 120px;
    resize: vertical;
}

.careers-apply__form .cf7-submit-wrap {
    margin-top: 24px;
}

.careers-apply__form .cf7-submit,
.careers-apply__form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.careers-apply__form .cf7-submit:hover,
.careers-apply__form .wpcf7-submit:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.careers-apply__form .wpcf7-spinner {
    display: none;
}

.careers-apply__form .wpcf7-response-output {
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 1.4rem;
    margin: 10px 0 0;
}


/* ===========================
   CONTACT PAGE
   =========================== */

/* Hero */
.contact-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #faf8f0 0%, #f5f3eb 100%);
}

.contact-hero__content h1 {
    font-size: 5.4rem;
    font-weight: 600;
    line-height: 68px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero__content p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 30px;
    color: #454443;
    max-width: 680px;
    margin: 0 auto;
}

/* Quick Contact Buttons */
.contact-quick {
    margin-top: -1px;
    padding-bottom: 0;
}

.contact-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.contact-quick__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.contact-quick__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    color: inherit;
}

.contact-quick__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(184, 159, 50, 0.12) 0%, rgba(184, 159, 50, 0.06) 100%);
    color: var(--gold);
}

.contact-quick__item--whatsapp .contact-quick__icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.06) 100%);
    color: #25D366;
}

.contact-quick__item--email .contact-quick__icon {
    background: linear-gradient(135deg, rgba(184, 159, 50, 0.12) 0%, rgba(184, 159, 50, 0.06) 100%);
    color: var(--gold);
}

.contact-quick__item--phone .contact-quick__icon {
    background: linear-gradient(135deg, rgba(52, 120, 246, 0.12) 0%, rgba(52, 120, 246, 0.06) 100%);
    color: #3478F6;
}

.contact-quick__text {
    display: flex;
    flex-direction: column;
}

.contact-quick__label {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 4px;
}

.contact-quick__value {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Forms Section */
.contact-forms__wrapper {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Tabs Navigation */
.contact-forms__tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
}

.contact-forms__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 24px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #777;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.contact-forms__tab:hover {
    color: #1a1a1a;
    background: rgba(184, 159, 50, 0.04);
}

.contact-forms__tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: #fff;
}

.contact-forms__tab svg {
    flex-shrink: 0;
}

/* Tab Panels */
.contact-forms__panel {
    display: none;
}

.contact-forms__panel.active {
    display: block;
}

.contact-forms__panel-inner {
    padding: 50px 56px;
}

.contact-forms__panel-header {
    margin-bottom: 40px;
}

.contact-forms__panel-header h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-forms__panel-header p {
    font-size: 1.6rem;
    font-weight: 400;
    color: #666;
    line-height: 26px;
}

/* Custom Form Styles (extends existing CF7 styles) */
.contact-form__custom .cf7-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form__custom .cf7-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__custom .cf7-field--full {
    margin-bottom: 20px;
}

.contact-form__custom .cf7-label-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-form__custom .cf7-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #fff;
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__custom .cf7-input::placeholder {
    color: #999;
    font-size: 1.5rem;
}

.contact-form__custom .cf7-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 159, 50, 0.1);
}

.contact-form__custom select.cf7-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form__custom .cf7-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__custom .cf7-submit-wrap {
    margin-top: 28px;
}

.contact-form__custom .cf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form__custom .cf7-submit:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* Privacy checkbox */
.contact-form__privacy {
    margin-top: 20px;
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 1.4rem;
    color: #666;
    line-height: 22px;
}

.contact-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

.contact-form__checkbox a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
}

.contact-form__checkbox a:hover {
    color: var(--gold-dark);
}

/* Form success/error */
.contact-form__message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 20px;
    display: none;
}

.contact-form__message--success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact-form__message--error {
    display: block;
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* CF7 Generated Elements inside .contact-form__custom */
.contact-form__custom .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form__custom .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #fff;
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__custom .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance)::placeholder {
    color: #999;
    font-size: 1.5rem;
}

.contact-form__custom .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 159, 50, 0.1);
}

.contact-form__custom select.wpcf7-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form__custom textarea.wpcf7-form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form__custom .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #CAAC29;
    background: linear-gradient(90deg, #D1B945 0%, #DBCA7B 50%, #D1B945 100%);
    box-shadow: 2px 2px 0 0 #CAAC29;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form__custom .wpcf7-submit:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.contact-form__custom .wpcf7-spinner {
    display: none;
}

.contact-form__custom .wpcf7-response-output {
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 1.4rem;
    margin: 10px 0 0;
}

.contact-form__custom .wpcf7-not-valid-tip {
    color: #c62828;
    font-size: 1.3rem;
    margin-top: 6px;
}

.contact-form__custom .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

/* FAQ Section */
.contact-faq__header {
    margin-bottom: 48px;
}

.contact-faq__header h2 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-faq__header p {
    font-size: 1.6rem;
    color: #666;
    line-height: 26px;
}

.contact-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-faq__item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.contact-faq__item.active {
    border-color: var(--gold);
}

.contact-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: color 0.3s ease;
}

.contact-faq__question:hover {
    color: var(--gold);
}

.contact-faq__item.active .contact-faq__question {
    color: var(--gold);
}

.contact-faq__question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-faq__item.active .contact-faq__question svg {
    transform: rotate(180deg);
}

.contact-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.contact-faq__item.active .contact-faq__answer {
    max-height: 300px;
}

.contact-faq__answer p {
    padding: 0 28px 22px;
    font-size: 1.5rem;
    color: #555;
    line-height: 26px;
    margin: 0;
}

/* Contact Details */
.contact-details__info h2 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-details__subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 26px;
    color: #666;
    margin-bottom: 40px;
}

.contact-details__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-details__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-details__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(184, 159, 50, 0.12) 0%, rgba(184, 159, 50, 0.06) 100%);
}

.contact-details__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details__text strong {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-details__text span,
.contact-details__text a {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
    line-height: 24px;
    transition: color 0.3s;
}

.contact-details__text a:hover {
    color: var(--gold);
}

/* Map */
.contact-details__map {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-details__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
    border-radius: 20px;
}

/* CTA Section */
.contact-cta {
    padding: 0 0 100px;
}

.contact-cta__box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 64px 80px;
    text-align: center;
}

.contact-cta__box h2 {
    font-size: 3.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.contact-cta__box p {
    font-size: 1.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 28px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-cta__actions {
    justify-content: center;
    gap: 20px;
}

.contact-cta__actions .btn_outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

.contact-cta__actions .btn_outline:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

