@font-face {
    font-family: 'Playfair_Display';
    src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Onest';
    src: url(../fonts/Onest-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Lato';
    src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Great_Vibes';
    src: url(../fonts/GreatVibes-Regular.ttf);
}

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

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --thm-font: 'Onest';
    --thm-font-secondary: 'Lato';
    --thm-font-accent: 'Great_Vibes';
    --color-dark: #000000;
    --color-white: #ffffff;
    --thm-primary-bg: #faf7f3;
    --thm-secondary-bg: #EDE0D4;
    --thm-primary: #6B0F1A;
    --thm-secondary: #CBA135;
    --thm-text: #2E2E2E;
    --thm-accent: #7B8C5D;

    --card-background: color-mix(in oklab, #0a0a12 82%, #8a4cff 18%);
    --card-border: 1px solid color-mix(in oklab, #a9afbc 36%, #0a0a12 64%);
}

html {
    scroll-behavior: smooth;
    font-family: var(--thm-font-secondary);
}

html,
body {
    height: 100%;
}

body {
    color: var(--thm-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font-secondary);
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    color: var(--primary);
    transition: 0.3s;
}

p {
    font-family: var(--thm-font-secondary);
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--thm-font);
}

ul,
li {
    list-style: none;
    transition: 0.3s;
}

.container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding-bottom: 100px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.section-description {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-divider {
    margin: 0 auto;
    width: 90px;
    height: 4px;
    border-radius: 10px;
    background: var(--thm-secondary);
}

.page-padding {
    padding: 100px 0;
}

.btn {
    background: var(--thm-primary);
    color: var(--color-white);
    padding: 14px 34px;
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    border: 2px solid var(--thm-primary);
    color: var(--thm-primary);
    background: transparent;
}

.btn:hover {
    background: #a31d44;
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #7b1533;
    color: var(--color-white);
}
.display-none{display: none;}

/* ---------------------------------------
        Preloader
   --------------------------------------- */
#thm-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.thm-spinner-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.thm-spinner {
    width: 100px;
    height: 100px;
    border: 6px solid var(--color-secondary);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: thm-spin 1s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.thm-preloader-logo {
    width: 188px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}

@keyframes thm-spin {
    to {
        transform: rotate(360deg);
    }
}

body.thm-loaded #thm-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --------------------------------------
        tap to top
   -------------------------------------- */
#thm-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--thm-primary);
    color: var(--color-white);
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

#thm-to-top:hover {
    background: var(--thm-secondary);
    transform: translateY(-4px);
}

#thm-to-top.thm-show {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------
        header
   -------------------------------------- */
.site-header {
    position: relative;
    z-index: 100;
    background: var(--thm-primary-bg);
}

.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #6B0F1A, #a965ff, #CBA135);
}

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

.site-header-logo img {
    height: 50px;
    object-fit: contain;
}

.site-header-nav ul {
    display: flex;
    gap: 30px;
}

.site-header-nav a {
    transition: 0.3s;
    color: var(--color-dark);
    transition: 0.3s;
    font-family: var(--thm-font-secondary);
}

.site-header-nav a:hover {
    color: var(--thm-secondary);
}

.site-header-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.lang-menu a:hover {
    color: var(--thm-secondary);
}

.icon-btn a svg,
.icon-btn svg {
    stroke: var(--thm-text);
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.icon-btn {
    position: relative;
    background: none;
    border: none;
    outline: 1px solid var(--thm-text);
    cursor: pointer;
    transition: 0.3s;
    padding: 7px;
    border-radius: 5px;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -8px;
    background: var(--thm-primary);
    color: var(--color-white);
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 7px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: var(--card-background);
    color: var(--color-white);
    border-radius: 13px;
    padding: 15px;
    min-width: 100px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
    transform-origin: top right;
    transition: all 0.3s ease;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    z-index: 101;
    pointer-events: auto;
    transform: scale(1);
    color: var(--thm-text);
    background: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.dropdown-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
}

.cart-menu-heading {
    padding: 0 0 30px 0;
    border-bottom: 1px solid rgba(11, 1, 1, 0.45);
    margin: 10px 0;
}

.cart-menu-heading h4 {
    font-weight: 400;
    font-family: var(--thm-font);
}

.cart-menu {
    width: 300px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(11, 1, 1, 0.45);
    padding: 0 0 10px 0;
}

.cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    object-fit: cover;
}

.cart-info {
    width: 100%;
}

.cart-info-product p {
    font-weight: 700;
    text-wrap: wrap;
}

.cart-info-qantity {
    color: var(--thm-secondary);
    font-weight: 400;
    font-size: 15px;
}

.cart-info .cart-info-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.cart-total p span {
    color: var(--thm-secondary);
}

.cart-total p {
    text-align: right;
}

.cart-total {
    margin: 10px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.cart-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart-actions a svg {
    width: 15px;
    height: 15px;
    fill: var(--color-white);
}

.btn-cart,
.btn-outline {
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cart {
    background: var(--thm-secondary);
    color: var(--color-white);
}

.btn-cart:hover {
    color: var(--color-white);
    background: #DEA30B;
}

.cart-btn-outline {
    background: var(--thm-primary);
    text-align: center;
    color: var(--color-white);
}

.cart-btn-outline:hover {
    background: #9a0013;
    color: var(--color-white);
}

.mobile-menu-socials .site-header-btns .icon-btn a svg {
    width: 25px;
    height: 25px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.menu-toggle svg {
    fill: var(--thm-text);
    width: 35px;
    height: 35px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: var(--thm-primary-bg);
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: left 0.4s ease;
    z-index: 999;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 22px;
    float: right;
    cursor: pointer;
}

.menu-close svg {
    fill: var(--thm-text);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99;
}

.mobile-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-nav ul li a {
    color: var(--color-dark);
}

.mobile-menu-nav ul li a:hover {
    margin-left: 5px;
}

/* =========== Index banner =========== */
.site-index-banner {
    background: linear-gradient(rgba(235, 220, 205, 0.2),
            rgba(107, 15, 26, 0.7)),
        url(../img/product/banner.jpg) center / cover no-repeat fixed;

}

.site-banner-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-banner-cnt-lf h1 {
    color: var(--color-white);
    font-size: 3em;
}

.site-banner-cnt-lf p {
    color: #f0f0f0;
    font-size: 1em;
    max-width: 600px;
}

.site-banner-cnt-lf p {
    margin: 0 0 50px;
    color: var(--color-white);
    max-width: 75ch;
}

.site-banner-container {
    display: flex;
    gap: 70px;
    padding: 100px 0;
    align-items: stretch;
}

.site-banner-cnt-lf {
    flex: 1;
    min-width: 280px;
}

.site-banner-cnt-lf h1 {
    font-size: 2.1rem;
    color: var(--color-white);
    margin: 0 0 12px;
    line-height: 1.15;
}

.site-banner-cnt-lf h1 span {
    color: var(--thm-secondary);
}

.quick-search h4 {
    color: #cfc7db;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

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

.search-input {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 220px;
}

.search-input input {
    width: 80%;
    padding: 12px 14px;
    border: none;
    color: var(--white);
    border-radius: 10px 0 0 10px;
    outline: none;
    transition: box-shadow .18s ease, border-color .18s;
}

.search-input input:focus {
    box-shadow: 0 6px 20px rgba(138, 76, 255, 0.12);
    border-color: rgba(138, 76, 255, 0.6);
}

.btn-small {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    color: var(--color-white);
    border: none;
    padding: 9px 12px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.btn-small-ctn {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--thm-text);
    border: none;
    background: var(--thm-primary-bg);
}

.btn-small-ctn svg {
    width: 30px;
    height: 30px;
    stroke: var(--thm-text);
}

.filters-inline {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.filter {
    position: relative;
}

.filter-btn {
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--thm-text);
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn svg {
    stroke: var(--thm-text);
}

.filter-btn:hover {
    background: var(--thm-secondary-bg);
    color: var(--white);
}

.filter-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(2, 1, 8, 0.6);
    display: none;
    border: 1px solid rgba(138, 76, 255, 0.06);
    z-index: 40;
    transform-origin: top left;
    animation: panelIn .22s ease both;
    background: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.filter-panel label {
    display: block;
    font-size: 0.95rem;
    color: var(--muted);
    padding: 6px 8px;
    cursor: pointer;
}

.filter-panel input {
    margin-right: 8px;
    transform: scale(1.02);
}

.filter.open .filter-panel {
    display: block;
}

.banner-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    color: var(--color-white);
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    background: var(--thm-secondary);
}

.btn-primary:hover {
    background: #DEA30B;
}

.btn-primary a,
.btn-outline a {
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s;
}

.btn-primary a:hover,
.btn-outline a:hover {
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-qr {
    background: var(--thm-primary);
    color: var(--color-white);
    font-weight: 600;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-qr svg {
    fill: var(--color-white);
}

.banner-features {
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-wrap: wrap;
    color: #cfc7db;
    font-size: 15px;
    border-top: 1px solid color-mix(in oklab, #a9afbc 36%, #0a0a12 64%);
}

.banner-features li {
    font-size: 13px;
}

.site-banner-cnt-rgh {
    width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-drop {
    position: relative;
    text-align: center;
    background: var(--color-white);
    border-radius: 13px;
}

.featured-img-wrap {
    position: relative;
    display: inline-block;
    padding: 12px 0 0 0;
    border-radius: 14px;
}

.featured-img {
    width: 230px;
    display: block;
    transform: translateY(0);
    transition: transform .4s ease;
    object-fit: cover;
    position: relative;
}

.featured-label {
    text-transform: uppercase;
    display: inline-block;
    margin-top: 12px;
    background: var(--thm-primary);
    color: var(--color-white);
    padding: 3px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.btn-outline a svg {
    stroke: var(--color-white);
}

.qr-preview-note {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.qr-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 6, 10, 0.6);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s;
}

.qr-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.qr-modal-content {
    position: relative;
    background: var(--thm-primary-bg);
    padding: 22px;
    border-radius: 12px;
    width: 320px;
    max-width: 90%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 18px 60px rgba(2, 1, 6, 0.7);
    border: 1px solid rgba(138, 76, 255, 0.12);
}

.qr-close {
    position: absolute;
    right: 18px;
    top: 10px;
    background: none;
    border: none;
    color: var(--thm-text);
    font-size: 22px;
    cursor: pointer;
}

.qr-image-wrap {
    margin: 12px 0;
    padding: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 10px;
}

.qr-image-wrap img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
}

.qr-modal-content .btn-outline {
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* ==============================================
        how it work
   ============================================= */
.how-it-work {
    background: var(--thm-primary-bg);
}

.how-it-work-section .section-heading {
    padding-top: 20px;
}

.section-how-work-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 50px 0 70px 0;

}

.hw-card-hd {
    display: flex;
    gap: 20px;
    align-items: center;
}

.section-how-work-card {
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 13px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.section-how-work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(107, 15, 26, 0.25);
}

.section-how-work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 95%;
    height: 3px;
    background: linear-gradient(90deg, #b8860b, #f5d68b);
    border-radius: 2px;
}

.hw-card-title h1 {
    font-size: 20px;
    color: var(--thm-primary);
}

.hw-card-description p {
    font-size: 16px;
}

.hw-card-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--thm-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
	flex-shrink: 0;
  	flex-grow: 0;
}

.hw-card-link {
    align-self: flex-end;
}

.hw-card-link a {
    display: flex;
    gap: 5px;
    align-items: center;
    transition: 0.3s;
}

.hw-card-link a:hover {
    margin-right: 5px;
    color: var(--thm-primary);
}

.hw-card-link a svg {
    stroke: var(--thm-text);
}

.hw-card-link a:hover svg {
    stroke: var(--thm-primary);
}

/* ==============================================
        section about
   ============================================= */
.how-it-work {
    padding: 100px 0 50px 0;
}

.about-us-lft-cnt .section-type {
    font-family: var(--thm-font-accent);
    font-size: 25px;
}

.about-us-index {
    background: var(--color-white);
}

.about-us-index-container {
    display: flex;
    gap: 50px;
    padding: 100px 0;
    align-items: center;
    justify-content: space-between;
}

.about-us-rght-cnt img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: 400px;
    border-radius: 13px;
}

.about-us-lft-cnt {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-lft-cnt .section-divider {
    margin: 0;
}

.about-us-lft-cnt h1 {
    font-size: 35px;
}

.about-index-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 40px;
}

.about-us-btns svg {
    stroke: var(--color-white);
}

.about-us-btns {
    display: flex !important;
    gap: 10px;
    align-items: center;
    color: var(--color-white);
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    background: var(--thm-primary);
}

.about-us-btn-ls {
    background: transparent;
    color: var(--primary);
    outline: 2px solid var(--thm-primary);
}

.about-index-btn .about-us-btns svg {
    stroke: var(--color-white);
}

.about-index-btn .about-us-btn-ls svg {
    stroke: var(--thm-text);
}

.about-index-btn .about-us-btn-ls:hover,
.about-index-btn .about-us-btns:hover {
    margin-left: 5px;
}

.about-index-btn .about-us-btns:hover {
    background: #911524;
    color: var(--color-white);
    border: 1px solid var(--primary);
}

.about-index-btn .about-us-btns:hover svg {
    stroke: var(--color-white);
}

.about-index-btn .about-us-btn-ls:hover svg {
    stroke: var(--color-white);
}

/* ==============================================
    leave coment
  =============================================== */
.us-review-btn {
    margin: 40px auto 0 auto;
    background: var(--thm-primary);
    color: var(--color-white);
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 10px;
    align-items: center;
}

.us-review-btn svg {
    stroke: var(--color-white);
}

.us-review-btn:hover {
    background: var(--thm-secondary);
    color: var(--color-dark);
    box-shadow: 0 0 15px rgba(203, 161, 53, 0.4);
}

.us-review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9990;
    backdrop-filter: blur(4px);
}
.us-review-chk{display: flex !important;align-items: center !important;gap: 5px !important;}
.us-review-chk .us-review-chkbx{width: 10px;}
.us-review-box {
    background: var(--card-background);
    border: var(--card-border);
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    border-radius: 16px;
    animation: us-rv-pop 0.4s ease;
}

.us-review-box h3 {
    color: var(--color-white);
}

@keyframes us-rv-pop {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.us-review-group {
    margin-bottom: 1.2rem;
}

.us-review-m1 {
    margin-top: 20px;
}

.us-review-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--thm-secondary);
    font-size: 0.9rem;
}

.us-review-group input,
.us-review-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: 0.3s;
}

.us-review-group input:focus,
.us-review-group textarea:focus {
    border-color: var(--thm-secondary);
    box-shadow: 0 0 10px rgba(203, 161, 53, 0.35);
}

.us-review-submit,
.us-review-close {
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.8rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.us-review-submit {
    background: var(--thm-primary);
    color: #fff;
}

.us-review-submit:hover {
    background: var(--thm-secondary);
    color: var(--color-dark);
}

.us-review-close {
    background: #333;
    color: #fff;
}

.us-review-close:hover {
    background: #444;
}

/* Alert messages for review */
.us-review-box .alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: slideDown 0.4s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.us-review-box .alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.us-review-box .alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.us-review-box .alert strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

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

/* Loading state buton */
.us-review-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.us-review-submit .btn-loading {
    display: inline-block;
}

.us-review-submit .btn-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==============================================
        section index popular wines
   ============================================= */
.wine-popular-section {
    background: #faf7f3;
}

.wine-popular-container {
    text-align: center;
}

.wine-popular-title {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    color: var(--thm-text);
}

.wine-popular-subtitle {
    font-size: 1rem;
    color: #7b7b7b;
    margin-bottom: 3rem;
}

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

.wine-popular-card {
	 position: relative;
	 display: flex;
	  flex-direction: column;
	  height: 100%;
    background: var(--color-white);
    border-radius: 13px;
    overflow: hidden;
    transition: 0.3s;
}

.wine-popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.wine-popular-image {
    position: relative;
    overflow: hidden;
}

.wine-popular-image img {
    width: 100%; height: 50vh;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wine-popular-card:hover .wine-popular-image img {
    transform: scale(1.05);
}

.wine-popular-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--thm-primary);
    color: var(--color-white);
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
}

.wine-popular-info {
    padding: 30px 20px;
    text-align: left;
	display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wine-popular-info h3 {
    font-size: 1.2rem;
    color: var(--thm-primary);
    margin-bottom: 10px;
}

.wine-popular-info p {
    font-size: 1rem;
    color: var(--thm-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.wine-popular-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
	margin-top: auto;
}

.wine-popular-price {
    font-weight: 700;
    color: #6e0d25;
    font-size: 1.1rem;
}

.wine-popular-rating {
    color: #f5a623;
    font-size: 0.9rem;
}

.wine-popular-btn {
    font-family: var(--thm-font);
    display: inline-block;
    width: 100%;
    background: var(--thm-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.wine-popular-btn:hover {
    background: #a3163b;
}

.wine-popular-btn svg {
    fill: var(--color-white);
    width: 24px;
    height: 24px;
}
.wine-producer-box {
    position: absolute;
	flex-direction: column;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.wine-producer-label {
    font-weight: 600;
    color: #333;
}

.wine-producer-logo {
    width: 100% !important;
  height: 35px !important;
  object-fit: contain !important;
}

.wine-producer-name {
    font-weight: 500;
    color: #444;
}


/* ==============================================
      index section reviews
   ============================================= */
.nd-reviews-section {
    background: #fffaf6;
    padding: 100px 0;
    text-align: center;
}

.nd-reviews-title {
    font-size: 2.2rem;
    color: var(--thm-text);
    margin-bottom: 10px;
}

.nd-reviews-subtitle {
    color: var(--thm-text);
    margin-bottom: 50px;
    font-size: 1rem;
}

.nd-reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.nd-reviews-viewport {
    overflow: hidden;
    flex: 1;
}

.nd-reviews-track {
    display: flex;
    gap: 20px;
    transition: 0.3s;
}

.nd-reviews-slide {
    text-align: initial;
    background: var(--thm-secondary-bg);
    border-radius: 13px;
    padding: 20px;
    flex: 0 0 calc(33.333% - 14px);
}

.nd-review-quote {
    font-style: italic;
    color: var(--thm-text);
    margin-bottom: 16px;
}

.nd-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nd-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.nd-review-meta strong {
    display: block;
    color: var(--thm-primary);
}

.nd-review-extra {
    font-size: 0.85rem;
    color: var(--thm-text);
}

.nd-reviews-btn {
    background: var(--thm-primary);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-reviews-btn:hover {
    background: #a3163b;
}

.nd-reviews-btn-prev {
    margin-right: 10px;
}

.nd-reviews-btn-next {
    margin-left: 10px;
}

.nd-reviews-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nd-reviews-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nd-reviews-dot.active {
    background: #6e0d25;
    transform: scale(1.2);
}

/* ==============================================
      index section Action
   ============================================= */
.nd-action-card {
    position: relative;
    background: linear-gradient(rgba(255, 250, 246, 0.9), rgba(248, 241, 235, 0.9)),
        url('../img/product/banner.jpg') center / cover no-repeat fixed;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.nd-action-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nd-action-icons {
    margin-bottom: 20px;
}

.nd-action-title {
    font-size: 2.4rem;
    color: var(--thm-text);
    margin-bottom: 16px;
}

.nd-action-text {
    font-size: 1.1rem;
    color: var(--thm-text);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.nd-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nd-action-btn {
    padding: 14px 34px;
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nd-action-btn-primary {
    background: var(--thm-primary);
    color: var(--color-white);
}

.nd-action-btn-primary:hover {
    background: #a31d44;
    transform: translateY(-2px);
    color: var(--color-white);
}

.nd-action-btn-outline {
    border: 2px solid var(--thm-primary);
    color: var(--thm-primary);
    background: transparent;
}

.nd-action-btn-outline svg {
    stroke: var(--thm-primary);
}

.nd-action-btn-outline:hover {
    background: #7b1533;
    color: var(--color-white);
}

.nd-action-btn-outline:hover svg {
    stroke: var(--color-white);
}

.nd-action-decor .nd-action-leaf {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(123, 21, 51, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatLeaf 14s ease-in-out infinite;
}

.nd-action-decor .nd-action-leaf:nth-child(1) {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.nd-action-decor .nd-action-leaf:nth-child(2) {
    bottom: 18%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatLeaf {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
        opacity: 1;
    }
}

/* =============================================
        About Us page
   =========================================== */
.ab-us-main {
    color: var(--thm-text);
    line-height: 1.5;
}

.ab-us-hero {
    background: linear-gradient(rgba(235, 220, 205, 0.2), rgba(107, 15, 26, 0.7)), url(../img/product/banner.jpg) center / cover no-repeat fixed;
}

.ab-us-hero {
    padding: 40px 0;
    height: 70vh;
    display: flex;
    align-items: center;
}

.ab-us-hero-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ab-us-hero-text {
    flex: 1 1 420px;
    min-width: 260px;
}

.ab-us-h1 {
    font-size: 34px;
    margin: 0 0 12px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.ab-us-lead {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 50px;
}

.ab-us-hero-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ab-us-btn {
    outline: 2px solid #ffffff94;
}

.ab-us-btn:hover {
    transform: translateY(-3px);
    color: var(--color-white);
}

.ab-us-ghost {
    border: none;
    outline: 2px solid #ffffff94;
    color: var(--color-white);
}

.ab-us-ghost svg {
    stroke: var(--color-white);
}

.ab-us-hero-visual img {
    width: 450px;
    border-radius: 13px;
    object-fit: cover;
}

.ab-us-section {
    padding-top: 100px;
}

.ab-us-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.ab-us-feature {
    background: var(--thm-primary-bg);
    border-radius: 13px;
    gap: 30px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.ab-us-feature .ab-us-icon {
    width: 50px;
    height: 50px;
    fill: var(--thm-primary);
    flex: 0 0 36px;
}

.ab-us-h2 {
    font-size: 2.4rem;
    color: var(--thm-text);
    margin-bottom: 20px;
}

.ab-us-h3 {
    font-size: 1.1rem;
    color: var(--thm-text);
}

.ab-us-p {
    font-size: 1.1em;
    color: var(--thm-text);
    margin: 0 0 8px;
}

.ab-us-p-sm {
    color: var(--thm-text);
    font-size: 14px;
}

.ab-us-steps {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ab-us-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: var(--thm-primary-bg);
    padding: 20px;
    border-radius: 12px;
    width: calc(33% - 12px);
    min-width: 220px;
    transform: translateY(12px);
    opacity: 0;
    transition: all .6s cubic-bezier(.2, .9, .3, 1);
}

.ab-us-step-num {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--thm-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.ab-us-stats-inner {
    background: linear-gradient(90deg, #fff 0%, #fff4f0 100%);
    border-radius: 13px;
    padding: 30px;
}

.ab-us-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.ab-us-stat {
    padding: 20px;
}

.ab-us-stat-num {
    font-size: 38px;
    color: var(--thm-primary);
    font-weight: 800;
}

.ab-us-stat-label {
    font-size: 18px;
    color: #6b5a53;
    margin-top: 6px;
}

.pg-ab-section {
    margin: 100px 0;
    background: var(--thm-primary-bg);
    padding: 100px 0;
}

.pg-ab-hm-section {
    margin: 0;
}

.pg-ab-slider {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
}

.pg-ab-slider-track {
    display: flex;
    flex-wrap: nowrap;
}

.pg-ab-slide {
    min-width: 200px;
    margin-right: 20px;
    background: var(--color-white);
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    flex-shrink: 0;
}

.pg-ab-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.ab-us-cta-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 24px 0 50px 0;
    flex-direction: column;
    text-align: center;
}

.ab-us-cta-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ab-us-animate {
    will-change: transform, opacity;
}


/* ==============================================
          services page
  ============================================== */
#srv-page-main {
    color: var(--thm-text);
    background-color: var(--thm-primary-bg);
    line-height: 1.5;
}

.srv-page-wrap {
    padding: 40px 20px;
}

.srv-page-hero {
    background: linear-gradient(rgba(235, 220, 205, 0.2), rgba(107, 15, 26, 0.7)), url(../img/product/banner.jpg) center / cover no-repeat fixed;
    padding: 60px 0;
    border-bottom: 1px solid #f1e7e3;
}

.srv-page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.srv-page-hero-inner .srv-page-hero-visual img {
    width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 13px;
}

.srv-page-h1 {
    font-size: 34px;
    color: var(--color-white);
    margin: 0 0 12px;
}

.srv-page-lead {
    font-size: 16px;
    color: var(--color-white);
    margin: 0;
}

.srv-page-grape {
    width: 160px;
    animation: srv-page-float 5s ease-in-out infinite;
}

@keyframes srv-page-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.pg-ab-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pg-ab-services {
    padding: 100px 0;
}

.pg-ab-service-card {
    display: block;
    background: var(--color-white);
    border-radius: 13px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    transform: translateY(10px);
    overflow: hidden;
}

.pg-ab-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pg-ab-service-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.pg-ab-service-title {
    font-size: 1.4rem;
    color: var(--thm-primary);
}

.pg-ab-service-desc {
    font-size: 1rem;
    color: var(--thm-text);
    line-height: 1.5;
}

.pg-ab-service-content {
    padding: 20px;
}

.srv-page-section {
    background: var(--color-white);
}

.srv-page-grid-step {
    padding: 100px 0;
}

.srv-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.srv-page-card {
    background: var(--thm-primary-bg);
    border-radius: 12px;
    padding: 20px;
    transform: translateY(20px);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.srv-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(40, 20, 10, 0.08);
}

.srv-page-icon {
    width: 48px;
    height: 48px;
    background: var(--thm-primary);
    color: var(--color-white);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.srv-page-icon svg {
    width: 22px;
    height: 22px;
    fill: #7b2f11;
}

.srv-page-benefit {
    background: var(--thm-primary-bg);
}

.srv-page-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    font-size: 15px;
}

.srv-page-benefits-list li {
    background: var(--thm-primary-bg);
    padding: 20px 14px;
    border-radius: 13px;
}

.srv-page-cta-inner {
    background: var(--thm-secondary-bg);
    padding: 50px;
    text-align: center;
}

.srv-page-btn {
    margin-top: 20px;
}

.srv-page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 47, 17, 0.3);
}

/* ==============================================
       contact page
   ============================================= */
.contact-pg-wrap {
    padding: 80px 20px;
    color: var(--thm-text);
}

.contact-pg-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--thm-primary);
}

.contact-pg-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-pg-form-card {
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-pg-subtitle {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--thm-primary);
}

.contact-pg-intro {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--thm-text);
}

.contact-pg-form .contact-pg-input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact-pg-form label {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-pg-form input,
.contact-pg-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}

.contact-pg-form input:focus,
.contact-pg-form textarea:focus {
    border-color: var(--thm-primary);
}

.contact-pg-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-pg-submit {
    border: none;
}

.contact-pg-info-card {
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-pg-info-list,
.contact-pg-hours-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: var(--thm-text);
}

.contact-pg-hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px 20px;
    margin-top: 10px;
}

.contact-pg-day {
    font-weight: 600;
}

.contact-pg-time {
    color: var(--thm-primary);
}

.contact-pg-map-card h2 {
    margin-bottom: 15px;
}

/* ==============================================
        login page
  ============================================= */
.user-adm-container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(235, 220, 205, 0.2),
            rgba(107, 15, 26, 0.7)),
        url(../img/backgrounds/podgorii.jpg) center / cover no-repeat fixed;
}

.us-lg-page {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.login-form-footer a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #004092;
}

.login-form-footer {
    padding-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.login-form-footer a:hover {
    color: var(--thm-secondary);
}

.us-lg-container {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
}

.us-lg-card {
    background: var(--thm-secondary-bg);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    animation: us-lg-fadeIn 0.7s ease-in-out;
    z-index: 1;
}

.us-lg-card h2,
.us-lg-card p {
    text-align: center;
}

.us-lg-card p {
    padding-bottom: 20px;
}

.user-register-cnt .us-lg-card p {
    padding-bottom: 15px;
}

.us-lg-logo {
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
}

.us-lg-logo img {
    width: 100px;
}

.us-lg-form-group {
    margin-bottom: 1.2rem;
}

.us-lg-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--thm-primary);
}

.us-lg-form-group input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0.05);
    color: var(--thm-text);
    transition: all 0.3s;
}

.us-lg-form-group input:focus {
    border-color: var(--thm-primary);
    outline: none;
    box-shadow: 0 0 4px rgba(141, 0, 40, 0.5);
}

.us-lg-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.us-lg-remember {
    font-size: 0.85rem;
    color: var(--thm-text);
    text-wrap: wrap;
}

.us-lg-forgot {
    font-size: 0.85rem;
    color: var(--thm-primary);
    text-decoration: none;
    transition: 0.3s;
}

.us-lg-forgot:hover {
    color: var(--thm-primary);
}

.us-lg-btn {
    width: 100%;
    background: var(--thm-primary);
    border: none;
    color: var(--color-white);
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
}

.us-lg-btn:hover {
    background: var(--thm-secondary);
    color: var(--color-white);
    box-shadow: 0 0 10px rgba(203, 161, 53, 0.4);
}

.us-lg-signup {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.us-lg-signup a {
    color: var(--thm-secondary);
    text-decoration: none;
    transition: 0.3s;
}

.us-lg-signup a:hover {
    color: var(--thm-primary);
}

.us-register-form .us-lg-form-group {
    margin-bottom: 15px;
}

.user-register-cnt .us-lg-card {
    padding: 20px 50px;
}

.user-register-cnt .us-lg-form-group input {
    padding: 10px;
}

.register-terms .register-terms-link {
    color: var(--thm-secondary);
}

.register-terms {
    margin-bottom: 10px;
}

@keyframes us-lg-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
        personalise page
  ============================================= */
.prd-pg-wrap {
    margin-top: 50px;
    margin-bottom: 60px;
}

.prd-pg-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--thm-primary);
    margin-bottom: 30px;
}

.prd-pg-order-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.prd-pg-cart-heading {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(154, 154, 154);
}

/* ===== Coș ===== */
.prd-pg-cart {
    flex: 1 1 35%;
    background: var(--thm-primary-bg);
    padding: 40px 20px;
    border-radius: 13px;
}

.form-group {
    padding: 10px;
}

.prd-pg-cart h3 {
    margin-bottom: 15px;
    color: #7b2f11;
}

.prd-pg-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #2E2E2E2E;
    padding: 10px 0;
}

.prd-pg-rght {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    margin-left: auto;
}

.prd-pg-cart-item img {
    width: 70px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.prd-pg-cart-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#prd-pg-cart-total {
    color: var(--thm-primary);
}

.prd-pg-cart-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--thm-primary);
}

.prd-pg-cart-info p i {
    color: var(--thm-primary);
}

.prd-pg-cart-price {
    font-weight: 600;
    color: var(--thm-primary);
}

.prd-pg-cart-qty {
    display: flex;
    align-items: center;
    gap: 5px;
}

.prd-pg-cart-input {
    width: 100px;
}

.prd-pg-cart-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

.prd-pg-cart-remove {
    background: var(--thm-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.prd-pg-cart-remove:hover {
    background: #c33;
}

/* ===== Formular ===== */
.prd-pg-order-form {
    flex: 1 1 60%;
    background: var(--color-white);
    padding: 25px;
    border-radius: 13px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-select,
.form-input,
.form-textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.form-select option {
    font-family: var(--thm-font);
}

.form-textarea {
    min-height: 50px;
}

.prs-pg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-upload-group label {
    font-family: var(--thm-font);
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: var(--thm-text);
}

.pg-prs-data {
    padding-top: 30px;
}

.form-upload-group input[type="file"] {
    width: 100%;
    border: 1px dashed #ccc;
    padding: 6px;
    border-radius: 6px;
    margin-top: 4px;
    cursor: pointer;
}

.prd-pg-preview {
    margin-top: 8px;
}

.prd-pg-preview img,
.prd-pg-preview video {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    display: block;
    margin-top: 5px;
}

.prd-pg-preview audio {
    width: 100%;
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.prd-pg-btn {
    margin-top: 20px;
    border: none;
    font-weight: 400;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.prd-pg-btn:hover {
    background: #621f0c;
}

.pg-payment-title {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--thm-primary);
}

.payment-method-group {
    padding: 1rem;
    border-radius: 12px;
    border: var(--card-border);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: var(--thm-text);
    cursor: pointer;
}

.payment-option input {
    width: 18px;
    height: 18px;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ===== Responsive ===== */
@media (max-width: 992px) {
    .prd-pg-order-layout {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* ==============================================
        products page
  ============================================= */
#prd-page-main {
    color: var(--thm-text);
    background: #fffdfc;
}

.prd-page-h1 {
    font-size: 32px;
    color: #5a2b12;
    margin-bottom: 10px;
}

.prd-page-lead {
    font-size: 16px;
    color: #4b3a34;
    margin-bottom: 20px;
}

.prd-page-hero {
    padding-top: 80px;
}

/* product sort filters */
.imobil-filters-general {
    padding: 30px 0;
}

.imobil-filters-top {
    padding-top: 30px;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.imobil-filters-top p {
    color: #555555;
}

.imobil-filters-top p span {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black);
}

.imobil-filters-resset {
    margin-left: auto;
    gap: 10px;
    display: flex;
}

/* Imobill all filters */
.imb-inc-select-items div:hover,
.same-as-selected {
    background: #f5f5f5;
}

.imb-inc-select-hide {
    display: none;
}

.imobil-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.imb-inc-id-filter,
.imb-srt-sf-filter,
.imb-fltr-unv-filter {
    position: relative;
    display: inline-block;
}

.imb-srt-sf-dropbtn,
.imb-fltr-unv-dropbtn,
.imb-inc-id-dropbtn {
    background: var(--color-white);
    color: var(--secondary);
    padding: 8px 15px;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 240px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.imb-inc-id-arrow::after,
.imb-fltr-unv-arrow::after,
.imb-srt-sf-arrow::after,
.make-anonce-arrow::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 15px;
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--thm-text);
    border-bottom: 1px solid var(--thm-text);
    transform: rotate(45deg);
    pointer-events: none;
    transition: 0.3s;
}

.imb-inc-id-dropdown-content,
.imb-srt-sf-dropdown-content,
.imb-fltr-unv-dropdown-content {
    display: none;
    position: absolute;
    background: var(--color-white);
    width: 100%;
    z-index: 2;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #D9D9D9;
    left: 0;
}

.imb-inc-id-dropdown-content.show,
.imb-srt-sf-dropdown-content.show,
.imb-fltr-unv-dropdown-content.show {
    display: block;
}

.imb-inc-id-input,
.imb-srt-sf-input-min,
.imb-srt-sf-input-max {
    width: 100%;
    padding: 8px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
}

.imb-srt-sf-separator {
    margin: 0 8px;
    color: #555555;
}

.imb-srt-sf-range-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imb-fltr-unv-options {
    max-height: 300px;
    overflow-y: auto;
}

.imb-fltr-unv-option {
    display: block;
    padding: 5px 0;
    cursor: pointer;
}

.imb-fltr-unv-option:hover {
    background: #f1f1f1;
}

.imb-fltr-unv-option input {
    margin-right: 8px;
}

.imb-fltr-unv-actions {
    display: flex;
    gap: 5px;
}

.imb-inc-id-dropbtn:hover,
.imb-srt-sf-dropbtn:hover,
.imb-fltr-unv-dropbtn:hover {
    background: #e9ecef;
}


/* ===================== */
/* Controls */
.prd-page-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.prd-page-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.prd-page-filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.prd-page-select,
.prd-page-input {
    padding: 8px 15px;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.prd-page-input {
    width: 70px;
}

.prd-page-sort {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}

.reset-filters-apply,
.reset-filters-reset {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 400;
    gap: 5px;
}

.prd-pg-products {
    padding: 40px 0;
}

.prd-pg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.prd-pg-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prd-pg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ======= Thumb + Galerie ======= */
.prd-pg-thumb {
    position: relative;
    overflow: hidden;
}

.prd-pg-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #7b2f11;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 100;
}

.prd-pg-label.new {
    background: #008c45;
}

.prd-pg-label.special {
    background: #e4b100;
    color: #000;
}

.prd-pg-gallery {
    position: relative;
    width: 100%;
}

.prd-pg-gallery img {
    width: 100%;
    display: none;
    height: 50vh;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.prd-pg-gallery img.active {
    display: block;
    opacity: 1;
}

.prd-pg-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.prd-pg-gallery-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prd-pg-gallery-btn.prev {
    left: 0;
}

.prd-pg-gallery-btn.next {
    right: 0;
}

/* ======= Body ======= */
.prd-pg-body {
    padding: 25px;
}

.prd-pg-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-primary);
    margin-bottom: 8px;
}

.prd-pg-desc {
    font-size: 14px;
    color: var(--thm-text);
    margin-bottom: 12px;
    min-height: 45px;
}

/* ======= Info ======= */
.prd-pg-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 25px;
}

.prd-pg-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--thm-text);
}

.prd-pg-info-item i {
    color: #7b2f11;
    font-size: 16px;
}

/* ======= Bottom ======= */
.prd-pg-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prd-pg-price {
    font-size: 18px;
    font-weight: 700;
    color: #7b2f11;
}

.prd-pg-btn {
    background: var(--thm-primary);
    color: var(--color-white);
    font-family: var(--thm-font);
    border: none;
    padding: 8px 14px;
    border-radius: 13px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 5px;
}

.prd-pg-btn svg {
    stroke: var(--color-white);
    width: 20px;
    height: 20px;
}

/* ===== PAGINATION ===== */
.prd-pg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.prd-pg-page-btn {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prd-pg-page-btn i {
    font-size: 12px;
}

.prd-pg-page-btn:hover {
    border-color: #7b2f11;
    color: #7b2f11;
}

.prd-pg-page-btn.active {
    background: #7b2f11;
    color: #fff;
    border-color: #7b2f11;
}

.prd-pg-pages {
    display: flex;
    gap: 6px;
}

.prd-pg-page-btn.prev,
.prd-pg-page-btn.next {
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .prd-pg-page-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}




/* ==============================================
        footer section
   ============================================= */
.section-footer {
    background: var(--thm-primary-bg);
    color: var(--thm-text);
    padding: 80px 20px 20px;
}

.nd-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.nd-footer-col h4 {
    color: var(--thm-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.nd-footer-col h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--thm-primary);
    margin-top: 6px;
}

.nd-footer-col ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nd-footer-col ul li a {
    color: var(--thm-text);
    text-decoration: none;
    transition: 0.3s;
}

.nd-footer-col ul li a:hover {
    color: var(--thm-secondary);
    margin-left: 5px;
}

.nd-footer-logo {
    width: 100%;
}

.nd-footer-col.nd-footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nd-footer-logo img {
    max-width: 170px;
    height: 80px;
}

.nd-footer-desc {
    font-size: 0.95rem;
    color: var(--thm-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.nd-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-primary);
    color: var(--color-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nd-footer-socials a:hover {
    background: #a31d44;
    transform: translateY(-3px);
}

.nd-footer-contact ul li i {
    color: var(--thm-primary);
}

.nd-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--thm-text);
}

.copyright_dev {
    display: none;
}

.nd-footer-social-list {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nd-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(123, 21, 51, 0.12);
    color: var(--color-white);
    transition: 0.3s;
    font-size: 1rem;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.project-founder {
    margin-top: 20px;
}

.project-founder p {
    font-size: 16px;
    font-weight: 600;
}

.project-founder img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}









@media (max-width:1080px) {
    .section-how-work-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:1000px) {
    .site-banner-container {
        flex-direction: column-reverse;
        gap: 18px;
        padding: 36px 12px;
    }

    .site-banner-cnt-rgh {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .site-banner-cnt-lf {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .site-header-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nd-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .nd-reviews-slide {
        flex: 0 0 80%;
    }

    .imobil-filters-resset {
        margin-left: initial;
    }

    .prd-pg-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 860px) {
    .ab-us-hero-inner {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 22px;
    }

    .ab-us-steps {
        flex-direction: column;
    }

    .ab-us-step {
        width: 100%
    }

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

    .about-us-index-container {
        align-items: inherit;
        flex-direction: column;
    }

    .about-us-lft-cnt {
        width: 100%;
    }

}

@media (max-width: 768px) {
    .nd-action-card {
        background-attachment: scroll;
    }

    .nd-action-title {
        font-size: 1.9rem;
    }

    .nd-action-text {
        font-size: 1rem;
    }

    .pg-ab-slide {
        min-width: 150px;
    }

    .contact-pg-content-grid {
        grid-template-columns: 1fr;
    }

    .section-how-work-cards {
        grid-template-columns: 1fr;
    }

    .prd-pg-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .nd-reviews-slide {
        flex: 0 0 90%;
    }

    .nd-reviews-btn {
        display: none;
    }

    .nd-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nd-footer-socials {
        justify-content: center;
    }

    .nd-footer-col ul li {
        justify-content: center;
    }

    .nd-footer-col h4::after {
        margin: 6px auto 0;
    }

    .nd-footer-social-list {
        justify-content: center;
    }

    .nd-footer-desc {
        margin-bottom: 16px;
    }

    .wine-popular-grid {
        grid-template-columns: 1fr;
    }

    .srv-page-hero-inner {
        flex-direction: column;
        margin: 0 auto;
    }

}

@media (max-width:560px) {
    .featured-img {
        width: 180px;
    }

    .featured-drop {
        padding: 12px;
    }

    .banner-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media(max-width: 480px) {
    .pg-ab-slide {
        min-width: 120px;
    }

    .ab-us-h1 {
        font-size: 26px;
    }

    .ab-us-grid-2 {
        grid-template-columns: 1fr;
    }

    .ab-us-stats-grid {
        grid-template-columns: 1fr;
    }

    .us-lg-card {
        padding: 1.5rem;
    }

    .us-lg-logo img {
        width: 80px;
    }
}

/* ========================================
   CABINET PERSONAL - PERSONALIZARE PRODUSE
   Stiluri pentru pagina de personalizare
   ======================================== */

/* Container principal cabinet */
.cabinet-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header cabinet */
.cabinet-header {
    text-align: center;
    margin-bottom: 48px;
}

.cabinet-title {
    font-family: var(--thm-font);
    font-size: 2.5rem;
    color: var(--thm-primary);
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cabinet-title svg {
    stroke: var(--thm-primary);
    flex-shrink: 0;
}

.cabinet-subtitle {
    font-size: 1.1rem;
    color: var(--thm-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cabinet-subtitle svg {
    stroke: var(--thm-secondary);
    flex-shrink: 0;
}

/* Alerte și mesaje */
.cabinet-alert {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease-out;
}

.cabinet-alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coș gol */
.cabinet-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--thm-primary-bg);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cabinet-empty svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #ccc;
}

.cabinet-empty h3 {
    font-size: 1.8rem;
    color: var(--thm-text);
    margin-bottom: 12px;
}

.cabinet-empty p {
    color: #666;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Indicator progres personalizare */
.cabinet-progress-wrapper {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(203, 161, 53, 0.2);
}

.cabinet-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.progress-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--thm-primary);
    font-size: 1.05rem;
}

.progress-label svg {
    stroke: var(--thm-secondary);
    flex-shrink: 0;
}

.progress-numbers {
    font-size: 0.95rem;
    color: var(--thm-text);
    font-weight: 500;
}

.cabinet-progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.cabinet-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--thm-secondary) 0%, #CBA135 100%);
    border-radius: 20px;
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
}

.cabinet-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Grid produse */
.cabinet-products {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

/* Card produs */
.cabinet-product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.cabinet-product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.cabinet-product-card.form-open {
    border-color: var(--thm-secondary);
    box-shadow: 0 8px 30px rgba(203, 161, 53, 0.2);
}

/* Header card - info produs */
.cabinet-card-header {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--thm-primary-bg) 0%, #fff 100%);
    border-bottom: 2px solid var(--thm-secondary);
    align-items: center;
}

.cabinet-product-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.cabinet-product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cabinet-product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--thm-primary);
    margin: 0;
}

.cabinet-product-producer {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.cabinet-product-meta {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.cabinet-meta-item {
    font-size: 0.9rem;
    color: var(--thm-text);
}

.cabinet-meta-item strong {
    font-weight: 600;
    color: var(--thm-primary);
}

/* Status badge */
.cabinet-card-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-personalized {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
}

.status-pending {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
}

/* Buton ștergere produs */
.btn-remove-product {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #757575;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-remove-product:hover {
    background: #fff5f5;
    border-color: #ef5350;
    color: #ef5350;
    transform: translateY(-2px);
}

.btn-remove-product svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Badge sticlă (pentru produse cu cantitate multiplă) */
.bottle-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--thm-secondary) 0%, #CBA135 100%);
    color: #fff;
    white-space: nowrap;
}

.bottle-badge svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Secțiune toggle formular personalizare */
.cabinet-toggle-section {
    padding: 24px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-toggle-personalization {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #a31d44 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 15, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-toggle-personalization::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-toggle-personalization:hover::before {
    left: 100%;
}

.btn-toggle-personalization:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.3);
}

.btn-toggle-personalization.active {
    background: linear-gradient(135deg, var(--thm-secondary) 0%, #CBA135 100%);
}

.btn-toggle-personalization svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-toggle-personalization .toggle-icon {
    transition: transform 0.3s ease;
}

.btn-toggle-personalization.active .toggle-icon {
    transform: rotate(180deg);
}

.toggle-text {
    font-family: var(--thm-font);
    letter-spacing: 0.3px;
}

.personalization-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(255, 152, 0, 0.1);
    border-left: 3px solid #ff9800;
    border-radius: 8px;
    color: #e65100;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: pulse-hint 2s ease-in-out infinite;
}

.personalization-hint svg {
    flex-shrink: 0;
    stroke: #ff9800;
}

@keyframes pulse-hint {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Formular personalizare */
.cabinet-personalization-form {
    padding: 32px 24px;
    background: #fff;
    display: none;
    /* Ascuns implicit */
    animation: slideDown 0.3s ease-out;
}

.cabinet-personalization-form.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    margin-bottom: 32px;
}

.form-section:last-of-type {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--thm-primary);
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-label svg {
    flex-shrink: 0;
}

/* Opțiuni ambalaj */
.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.package-option {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--thm-primary-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.package-option:hover .package-content {
    background: #fff;
    border-color: var(--thm-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-option.active .package-content,
.package-option input[type="radio"]:checked+.package-content {
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    border-color: var(--thm-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.3);
}

.package-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.package-name {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

/* Textarea mesaj */
.form-textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--thm-font-secondary);
    font-size: 0.95rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--thm-primary);
    box-shadow: 0 0 0 3px rgba(107, 15, 26, 0.1);
}

.form-help {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.char-counter {
    font-size: 0.85rem;
    color: #999;
}

.char-counter .current-chars {
    color: var(--thm-primary);
    font-weight: 600;
}

/* Upload zone */
.upload-zone {
    position: relative;
    min-height: 180px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: var(--thm-primary-bg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.upload-zone:hover {
    border-color: var(--thm-secondary);
    background: #fff;
}

.upload-zone.dragover {
    border-color: var(--thm-primary);
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.05) 0%, rgba(203, 161, 53, 0.05) 100%);
    transform: scale(1.02);
}

.upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    text-align: center;
    min-height: 180px;
}

.upload-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--thm-secondary);
    margin-bottom: 16px;
}

.upload-placeholder p {
    font-size: 1rem;
    color: var(--thm-text);
    margin-bottom: 8px;
}

.upload-browse {
    color: var(--thm-primary);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.upload-format {
    font-size: 0.85rem;
    color: #999;
}

/* Preview upload */
.upload-preview {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #000;
    z-index: 1;
}

.upload-preview img,
.upload-preview video {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    object-fit: contain;
}

.upload-preview audio {
    width: 100%;
    max-width: 400px;
}

.upload-remove {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.upload-remove:hover {
    background: #ff0000;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.upload-remove svg {
    color: #fff;
}

/* Progress bar */
.upload-progress {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 180px;
    justify-content: center;
}

.progress-bar {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    transition: width 0.3s ease;
    width: 0%;
    border-radius: 10px;
}

.progress-text {
    font-weight: 600;
    color: var(--thm-primary);
    font-size: 1rem;
}

/* Butoane acțiuni formular */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.btn-save {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 15, 26, 0.3);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.4);
}

.btn-save:active {
    transform: translateY(0);
}

.btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer cabinet */
.cabinet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: var(--thm-primary-bg);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.3);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 15, 26, 0.4);
}

.checkout-disabled-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid #ff9800;
    border-radius: 12px;
    color: #e65100;
    font-weight: 600;
    font-size: 1rem;
}

.checkout-disabled-hint svg {
    flex-shrink: 0;
    stroke: #ff9800;
}

/* Responsive design pentru cabinet */
@media (max-width: 992px) {
    .cabinet-card-header {
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }

    .cabinet-card-status {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 12px;
    }

    .cabinet-product-image {
        width: 100px;
        height: 100px;
    }

    .package-options {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .cabinet-section {
        padding: 40px 16px;
    }

    .cabinet-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 8px;
    }

    .cabinet-title svg {
        width: 28px;
        height: 28px;
    }

    .cabinet-subtitle {
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
    }

    .cabinet-progress-wrapper {
        padding: 20px 16px;
    }

    .cabinet-progress-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cabinet-card-header {
        grid-template-columns: 80px 1fr;
        padding: 20px 16px;
    }

    .cabinet-card-status {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 12px;
    }

    .cabinet-product-image {
        width: 80px;
        height: 80px;
    }

    .cabinet-product-title {
        font-size: 1.1rem;
    }

    .bottle-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .cabinet-product-meta {
        flex-direction: column;
        gap: 4px;
    }

    .cabinet-toggle-section {
        padding: 20px 16px;
    }

    .btn-toggle-personalization {
        font-size: 1rem;
        padding: 16px 20px;
        gap: 8px;
    }

    .personalization-hint {
        font-size: 0.85rem;
        padding: 10px 14px;
        flex-direction: column;
        text-align: center;
    }

    .cabinet-personalization-form {
        padding: 24px 16px;
    }

    .cabinet-footer {
        flex-direction: column;
        padding: 24px 16px;
    }

    .btn-continue {
        width: 100%;
        justify-content: center;
    }

    #clearAllPersonalizations {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cabinet-title {
        font-size: 1.6rem;
    }

    .package-options {
        grid-template-columns: 1fr;
    }

    .cabinet-product-meta {
        font-size: 0.85rem;
    }

    .upload-placeholder {
        padding: 24px 16px;
        min-height: 150px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-save {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
      CHECKOUT PAGE STYLES
   =========================================== */

.checkout-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 48px;
}

.checkout-title {
    font-family: var(--thm-font);
    font-size: 2.5rem;
    color: var(--thm-primary);
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-title svg {
    stroke: var(--thm-primary);
    flex-shrink: 0;
}

.checkout-subtitle {
    font-size: 1.1rem;
    color: var(--thm-text);
    opacity: 0.9;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: start;
}

/* Secțiune produse */
.checkout-products-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--thm-secondary);
}

.checkout-section-header h2 {
    font-size: 1.5rem;
    color: var(--thm-primary);
    margin: 0;
}

.checkout-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
}

.checkout-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-product-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: var(--thm-primary-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.checkout-product-image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

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

.checkout-bottle-number {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--thm-secondary);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.checkout-product-info h3 {
    font-size: 1.2rem;
    color: var(--thm-primary);
    margin: 0 0 8px 0;
}

.checkout-producer {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 0 12px 0;
}

.checkout-personalization-preview {
    margin-top: 12px;
}

.personalization-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.personalization-label {
    font-weight: 600;
    color: var(--thm-text);
    font-size: 0.9rem;
}

.personalization-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(203, 161, 53, 0.1);
    border: 1px solid var(--thm-secondary);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--thm-text);
}

.detail-badge svg {
    stroke: var(--thm-secondary);
    flex-shrink: 0;
}

.no-personalization {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #e65100;
}

.no-personalization svg {
    stroke: #ff9800;
    flex-shrink: 0;
}

.checkout-product-price {
    display: flex;
    align-items: center;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-primary);
}

/* Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-summary {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-summary h3 {
    font-size: 1.3rem;
    color: var(--thm-primary);
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--thm-secondary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--thm-text);
}

.summary-row.summary-total {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid #e0e0e0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-primary);
}

.summary-value {
    font-weight: 600;
}

/* Formular */
.checkout-form {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-form h3 {
    font-size: 1.3rem;
    color: var(--thm-primary);
    margin: 0 0 24px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--thm-text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--thm-secondary);
    box-shadow: 0 0 0 3px rgba(203, 161, 53, 0.1);
}

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

.checkout-info-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    margin: 24px 0;
}

.checkout-info-box svg {
    flex-shrink: 0;
    stroke: #2196f3;
}

.checkout-info-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #1565c0;
    line-height: 1.5;
}

.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #a31d44 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 15, 26, 0.4);
}

.btn-checkout svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .checkout-product-card {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .checkout-product-price {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 40px 16px;
    }

    .checkout-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 8px;
    }

    .checkout-products-section {
        padding: 20px 16px;
    }

    .checkout-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CHECKOUT PAGE - Finalizare Comandă
   ======================================== */

.checkout-wrap {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-section-title {
    font-family: var(--thm-font);
    font-size: 2.5rem;
    color: var(--thm-primary);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    align-items: start;
}

/* COLOANĂ STÂNGA - PRODUSE */
.checkout-cart {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-cart-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--thm-primary);
    margin: 0 0 24px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--thm-secondary);
}

.checkout-cart-heading svg {
    fill: var(--thm-primary);
    flex-shrink: 0;
}

.checkout-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.checkout-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: var(--thm-primary-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.checkout-cart-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.checkout-cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
}

.checkout-cart-info h4 {
    font-size: 1.2rem;
    color: var(--thm-primary);
    margin: 0 0 8px 0;
}

.bottle-badge {
    display: inline-block;
    background: var(--thm-secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.product-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 12px 0;
}

.product-meta i {
    color: var(--thm-secondary);
    margin-right: 4px;
}

/* Status personalizare */
.personalization-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.personalization-status.personalized {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
}

.personalization-status.personalized svg {
    stroke: #fff;
}

.personalization-status.not-personalized {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
}

.personalization-status.not-personalized svg {
    stroke: #fff;
}

/* Detalii personalizare */
.personalization-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(203, 161, 53, 0.1);
    border: 1px solid var(--thm-secondary);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--thm-text);
    position: relative;
    cursor: help;
    transition: all 0.3s ease;
}

.detail-badge:hover {
    background: rgba(203, 161, 53, 0.2);
    border-color: var(--thm-primary);
    transform: translateY(-2px);
}

/* Detail badges în checkout */
.detail-badges {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.detail-badges .detail-badge {
    padding: 4px 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 161, 53, 0.3);
    cursor: help;
}

.detail-badges .detail-badge:hover {
    background: rgba(203, 161, 53, 0.15);
    border-color: var(--thm-secondary);
    transform: scale(1.1);
}

.detail-badge svg {
    stroke: var(--thm-secondary);
    flex-shrink: 0;
}

.checkout-cart-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
}

/* TOTAL */
.checkout-cart-total {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--thm-text);
    font-size: 1rem;
}

.total-row.total-final {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid var(--thm-secondary);
    font-size: 1.3rem;
    color: var(--thm-primary);
}

.free-delivery {
    color: #4caf50;
    font-weight: 600;
}

/* COLOANĂ DREAPTA - FORMULAR */
.checkout-order-form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.checkout-order-form h3 {
    font-size: 1.3rem;
    color: var(--thm-primary);
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--thm-secondary);
}

.form-section-title {
    margin-top: 32px;
}

.form-hint {
    color: #666;
    font-size: 0.9rem;
    margin: -12px 0 20px 0;
    font-style: italic;
}

.form-grid {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--thm-text);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--thm-secondary);
    box-shadow: 0 0 0 3px rgba(203, 161, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Metode de plată */
.payment-method-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover:not(.disabled) {
    border-color: var(--thm-secondary);
    background: rgba(203, 161, 53, 0.05);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option.disabled em {
    color: #999;
    font-size: 0.85rem;
}

/* Footer formular */
.checkout-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--thm-text);
    cursor: pointer;
}

.form-check a {
    color: var(--thm-secondary);
    text-decoration: underline;
}

.checkout-actions {
    display: flex;
    gap: 16px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--thm-primary);
    color: #fff;
}

.btn-secondary svg {
    stroke: currentColor;
}

/* Acțiuni formular checkout */
.checkout-form-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.btn-back-cabinet {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back-cabinet:hover {
    background: var(--thm-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 15, 26, 0.3);
}

.btn-back-cabinet svg {
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

.checkout-submit-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #5a0c0c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.4);
}

.checkout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checkout-submit-btn svg {
    stroke: #fff;
    fill: #fff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-order-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-wrap {
        padding: 40px 16px;
    }

    .checkout-section-title {
        font-size: 2rem;
    }

    .checkout-cart,
    .checkout-order-form {
        padding: 20px;
    }

    .checkout-cart-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .checkout-cart-item img {
        width: 80px;
        height: 80px;
    }

    .checkout-cart-price {
        grid-column: 1 / -1;
        justify-content: flex-start;
        font-size: 1.1rem;
        margin-top: 8px;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .checkout-form-actions {
        flex-direction: column;
    }

    .btn-back-cabinet,
    .btn-secondary,
    .checkout-submit-btn {
        width: 100%;
        justify-content: center;
    }

    /* ===================================
   Order Success Page Styles
   =================================== */
    .order-success-wrap {
        padding: 80px 20px;
        min-height: 80vh;
        background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    }

    .success-container {
        max-width: 850px;
        margin: 0 auto;
    }

    .success-icon {
        text-align: center;
        margin-bottom: 35px;
        animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .success-icon svg {
        filter: drop-shadow(0 4px 10px rgba(40, 167, 69, 0.2));
    }

    @keyframes scaleIn {
        from {
            transform: scale(0) rotate(-180deg);
            opacity: 0;
        }

        to {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }

    .success-title {
        text-align: center;
        font-size: 2.8rem;
        color: var(--thm-primary);
        margin-bottom: 35px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(107, 15, 26, 0.1);
    }

    .order-number-box {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        border: 3px solid var(--thm-secondary);
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        margin-bottom: 35px;
        box-shadow: 0 6px 20px rgba(203, 161, 53, 0.15);
        position: relative;
        overflow: hidden;
    }

    .order-number-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    }

    .order-label {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .order-number {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--thm-primary);
        margin: 0;
        letter-spacing: 2px;
        text-shadow: 0 2px 4px rgba(107, 15, 26, 0.1);
    }

    .success-message {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border: 2px solid #28a745;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 35px;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
    }

    .message-primary {
        font-size: 1.3rem;
        color: #155724;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .message-secondary {
        .message-secondary {
            font-size: 1.05rem;
            color: #155724;
            margin: 0;
            line-height: 1.7;
        }

        .info-card {
            background-color: #fff;
            border: 2px solid var(--thm-secondary);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 35px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .info-card-header {
            background: linear-gradient(135deg, var(--thm-primary) 0%, #5a0c0c 100%);
            color: white;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .info-card-header h3 {
            margin: 0;
            font-size: 1.6rem;
            font-weight: 600;
        }

        .info-card-body {
            padding: 30px;
            background: #fafafa;
        }

        .steps-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .steps-list li {
            display: flex;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .steps-list li:last-child {
            border-bottom: none;
        }

        .step-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .step-content strong {
            display: block;
            color: var(--thm-primary);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .step-content p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }

        .order-summary-card {
            background-color: #fff;
            border: 2px solid #dee2e6;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .summary-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--thm-primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--thm-secondary);
        }

        .summary-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f1f1f1;
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-row span {
            color: #666;
            font-size: 1rem;
        }

        .summary-row strong {
            color: #333;
            font-size: 1.1rem;
        }

        .total-amount {
            color: var(--thm-primary) !important;
            font-size: 1.5rem !important;
        }

        .status-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .status-pending {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }

        .contact-card {
            background-color: #fff9e6;
            border: 2px solid var(--thm-secondary);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .contact-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--thm-primary);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .contact-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .contact-methods {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-methods li {
            padding: 8px 0;
            color: #333;
            font-size: 1rem;
        }

        .action-buttons {
            display: flex;
            gap: 16px;
            margin-top: 40px;
        }

        .action-buttons .btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .action-buttons .btn-primary {
            background: linear-gradient(135deg, var(--thm-primary) 0%, #5a0c0c 100%);
            color: white;
            border: none;
        }

        .action-buttons .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(107, 15, 26, 0.3);
        }

        .action-buttons .btn-secondary {
            background: white;
            color: var(--thm-primary);
            border: 2px solid var(--thm-primary);
        }

        .action-buttons .btn-secondary:hover {
            background: var(--thm-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .order-success-wrap {
                padding: 40px 15px;
            }

            .success-title {
                font-size: 1.8rem;
            }

            .order-number {
                font-size: 1.5rem;
            }

            .action-buttons {
                flex-direction: column;
            }

            .steps-list li {
                flex-direction: column;
                text-align: center;
            }

            .step-icon {
                font-size: 2.5rem;
            }            }
        }
    }
}

/* ===================================
   Personal Cabinet Styles
   =================================== */

.profile-dashboard-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* ===================================
   Sidebar Styles
   =================================== */

.dashboard-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.user-profile-card {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 25px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.avatar-placeholder-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    border-radius: 50%;
}

.user-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.user-email {
    font-size: 0.875rem;
    color: #6b7280;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-item:hover {
    background: #f3f4f6;
    color: var(--thm-primary);
    transform: translateX(5px);
}

.nav-item:hover svg {
    transform: scale(1.1);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    color: #fff;
    font-weight: 600;
}

.nav-item .badge {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.nav-item.active .badge {
    background: rgba(255,255,255,0.3);
}

/* ===================================
   Dashboard Content
   =================================== */

.dashboard-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dashboard-header {
    margin-bottom: 35px;
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: #6b7280;
    font-size: 1rem;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--thm-secondary);
    transform: translateX(-5px);
}

/* ===================================
   Statistics Cards
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.stat-info p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ===================================
   Dashboard Sections
   =================================== */

.dashboard-section {
    margin-bottom: 35px;
}

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

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--thm-secondary);
    transform: translateX(5px);
}

/* ===================================
   Orders List
   =================================== */

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: grid;
    grid-template-columns: 200px 150px 150px auto 150px;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.order-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.order-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--thm-primary);
    margin-bottom: 5px;
}

.order-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

.order-products,
.order-total {
    font-size: 0.95rem;
    color: #4b5563;
}

.order-total {
    font-weight: 700;
}

.order-status {
    display: flex;
    justify-content: center;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background: #dbeafe;
    color: #1e40af;
}

.status-processing {
    background: #e0e7ff;
    color: #4338ca;
}

.status-delivered {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.order-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--thm-primary);
    color: #fff;
    border-color: var(--thm-primary);
    transform: scale(1.1);
}

.btn-icon.btn-danger:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* ===================================
   Profile Forms
   =================================== */

.profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.profile-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--thm-primary);
    box-shadow: 0 0 0 3px rgba(var(--thm-primary-rgb), 0.1);
}

.form-control.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: #6b7280;
    color: #fff;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-danger {
    background: #ef4444;
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Photo Upload */
.photo-upload-group {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 25px;
    background: #f9fafb;
}

.photo-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.photo-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.help-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 8px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ===================================
   Orders Table
   =================================== */

.orders-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--thm-primary);
    color: var(--thm-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
    color: #fff;
    border-color: transparent;
}

.orders-table-wrapper {
    overflow-x: auto;
    margin-bottom: 25px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead {
    background: #f9fafb;
}

.orders-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.orders-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e5e7eb;
}

.orders-table tbody tr {
    transition: all 0.3s ease;
}

.orders-table tbody tr:hover {
    background: #f9fafb;
}

.order-number strong {
    color: var(--thm-primary);
    font-size: 1.05rem;
}

.order-date small {
    color: #6b7280;
}

.order-actions-group {
    display: flex;
    gap: 10px;
}

/* ===================================
   Order Details
   =================================== */

.order-status-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 35px;
    color: #fff;
    margin-bottom: 30px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.status-header h2 {
    color: #fff;
    font-size: 1.75rem;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: rgba(255,255,255,0.2);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.timeline-step.completed .step-icon {
    background: #fff;
    color: #667eea;
    border-color: #fff;
}

.timeline-step.cancelled .step-icon {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.step-content h4 {
    color: #fff;
    margin-bottom: 5px;
}

.step-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

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

/* Order Details Content */
.order-details-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.order-details-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-item-detail {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.item-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.personalization-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.personalization-text {
    color: #6b7280;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 8px;
}

.item-quantity {
    color: #6b7280;
    font-size: 0.95rem;
}

.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.item-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.item-price .unit-price {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Order Summary */
.order-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--thm-primary);
}

.info-item strong {
    display: block;
    color: #1f2937;
    margin-bottom: 5px;
}

.info-item p {
    color: #6b7280;
}

.total-summary {
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
    margin-top: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #6b7280;
}

.summary-row.total {
    border-top: 2px solid #e5e7eb;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.order-notes-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 20px;
}

.order-notes-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 10px;
}

.order-notes-card p {
    color: #78350f;
}

/* ===================================
   Notifications
   =================================== */

.notifications-header-actions {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
}

.notifications-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-card {
    display: grid;
    grid-template-columns: 4px 60px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.notification-card.unread {
    background: #f0f9ff;
    border-color: #bfdbfe;
}

.notification-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.notification-indicator {
    width: 4px;
    border-radius: 2px;
    background: transparent;
}

.notification-card.unread .notification-indicator {
    background: linear-gradient(135deg, var(--thm-primary) 0%, var(--thm-secondary) 100%);
}

.notification-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-order_confirmed {
    background: #d1fae5;
    color: #065f46;
}

.notification-order_shipped {
    background: #dbeafe;
    color: #1e40af;
}

.notification-order_delivered {
    background: #e0e7ff;
    color: #4338ca;
}

.notification-order_cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.notification-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.notification-content p {
    color: #6b7280;
    margin-bottom: 12px;
}

.notification-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 0.875rem;
}

.notification-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--thm-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.notification-link:hover {
    color: var(--thm-secondary);
    transform: translateX(3px);
}

.mark-read-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark-read-btn:hover {
    background: var(--thm-primary);
    color: #fff;
    border-color: var(--thm-primary);
}

/* ===================================
   Empty States
   =================================== */

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state svg {
    color: #d1d5db;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 25px;
}

/* ===================================
   Pagination
   =================================== */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
    }

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

    .order-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .order-status {
        justify-content: flex-start;
    }

    .order-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }

    .status-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .status-timeline::before {
        display: none;
    }

    .timeline-step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .order-item-detail {
        grid-template-columns: 1fr;
    }

    .item-price {
        align-items: flex-start;
    }

    .notification-card {
        grid-template-columns: 4px 1fr auto;
    }

    .notification-icon {
        display: none;
    }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.personalization-details {
    margin-top: 8px;
    padding: 10px;
    background: #fffbeb;
    border-radius: 8px;
    border-left: 3px solid #fbbf24;
}

.personalization-details .personalization-text {
    margin-bottom: 4px;
}

.personalization-details .personalization-text:last-child {
    margin-bottom: 0;
}

/* Personalization Media Styles */
.personalization-media {
    margin-bottom: 15px;
}

.personalization-media:last-child {
    margin-bottom: 0;
}

.personalization-media strong {
    display: block;
    margin-bottom: 8px;
    color: #92400e;
}

.media-preview {
    margin-top: 8px;
}

.personalization-image {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: contain;
    background: #f3f4f6;
    padding: 8px;
}

.personalization-video {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #000;
}

.personalization-audio {
    width: 100%;
    max-width: 400px;
    height: 40px;
    border-radius: 20px;
}

/* Responsive pentru media personalizare */
@media (max-width: 768px) {
    .personalization-image {
        max-width: 100%;
    }
    
    .personalization-video {
        max-width: 100%;
    }
    
    .personalization-audio {
        max-width: 100%;
    }
}

/* =====================================
   Terms & Conditions Page Styles
   ===================================== */
.terms-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.pg-terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.terms-section h1 {
    font-size: 2.5rem;
    color: var(--thm-primary);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid var(--thm-primary);
    padding-bottom: 20px;
}

.terms-intro {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.terms-section h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid var(--thm-primary);
    padding-left: 15px;
}

.terms-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.terms-section ul {
    margin: 15px 0 25px 25px;
    padding-left: 20px;
}

.terms-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.terms-section ul li::marker {
    color: var(--thm-primary);
    font-weight: bold;
}

.terms-section strong {
    color: #1a202c;
    font-weight: 600;
}

.terms-section a {
    color: var(--thm-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #5a1515;
}

@media (max-width: 768px) {
    .terms-page {
        padding: 40px 0;
    }
    
    .terms-content {
        padding: 30px 20px;
    }
    
    .terms-section h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.4rem;
    }
    
    .terms-section p,
    .terms-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-section h1 {
        font-size: 1.75rem;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
    }
    
    .terms-section p,
    .terms-section ul li {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* Review Form - Terms & Conditions Checkbox Styling */
.us-review-terms {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.us-review-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.us-review-terms-label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(203, 161, 53, 0.3);
}

.us-review-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.us-review-checkbox:hover {
    border-color: var(--thm-secondary);
    background: rgba(203, 161, 53, 0.1);
}

.us-review-checkbox:checked {
    background: var(--thm-secondary);
    border-color: var(--thm-secondary);
}

.us-review-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: bold;
}

.us-review-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(203, 161, 53, 0.2);
}

.us-review-terms-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.us-review-terms-link {
    color: var(--thm-secondary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.us-review-terms-link:hover {
    color: #e5c76b;
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .us-review-terms-label {
        padding: 10px;
        gap: 10px;
    }
    
    .us-review-checkbox {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
    
    .us-review-terms-text {
        font-size: 13px;
    }
}
