/* ===================================
   משטחית - LUXURY EDITION
   Premium Design System
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* ===================================
   CSS Variables - Luxury Palette
   =================================== */
:root {
    /* Premium Colors */
    --black-deep: #0a0a0a;
    --black-rich: #111111;
    --black-soft: #1a1a1a;
    --black-medium: #252525;

    /* Gold Spectrum */
    /* זהב מוברש ולא רווי. #FFD700 הקודם היה צהוב נאון שקורא "מבצע!"
       ולא "פרימיום"; זהב יוקרתי נוטה לברונזה ולשמפניה. */
    --gold-dark: #8B7355;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-bright: #E3C766;
    --gold-gradient: linear-gradient(135deg, #A8871F 0%, #D9BC63 50%, #A8871F 100%);
    --gold-gradient-hover: linear-gradient(135deg, #B8952A 0%, #E6CC7A 50%, #B8952A 100%);

    /* Neutrals */
    --white: #FFFFFF;
    --white-soft: #F8F8F8;
    --gray-100: #E5E5E5;
    --gray-200: #CCCCCC;
    --gray-300: #999999;
    --gray-400: #666666;
    --gray-500: #444444;

    /* Accent */
    --green-whatsapp: #25D366;
    --blue-accessibility: #0066CC;

    /* Typography */
    --font-primary: 'Heebo', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --header-height: 90px;
    --section-padding: 100px;
    --container-width: 1400px;

    /* Effects */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.2);
    --blur-glass: blur(20px);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* חסימת גלילה אופקית. נדרש גם על html - overflow-x על body בלבד
   אינו מספיק בחלק מהדפדפנים ואלמנט חורג עדיין גורם לגלילה. */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black-deep);
    color: var(--white);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--black-deep);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===================================
   Typography System
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 200;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 20px auto;
}

.gold-line-left {
    margin: 20px 0 20px auto;
}

/* ===================================
   HEADER - Luxury Glass Effect
   =================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition);
}

.header.scrolled::before {
    background: rgba(10,10,10,0.98);
    border-bottom-color: rgba(201, 162, 39, 0.2);
}

.header-container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    filter: brightness(1.1);
}

/* Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-200);
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

/* קו לבן מעל כל פריט בתפריט, כמו באתר החי.
   נמדד מצילום של האתר החי: לבן מלא #fff ברוחב הפריט,
   עובי 1px בפריט רגיל ו-4px בדף שבו נמצאים כרגע.
   הקו יושב על הקצה העליון של הפריט ולכן top:0 ולא bottom. */
.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: #fff;
    transition: height 0.25s ease;
}

.nav-link:hover {
    color: var(--white);
}

/* ביניים בין רגיל לפעיל - הקו מתעבה מעט בריחוף
   כדי שיישאר ברור באיזה דף אנחנו נמצאים בפועל */
.nav-link:hover::after {
    height: 2px;
}

/* הדף הנוכחי: קו מודגש וטקסט בבז' החם של האתר החי */
.nav-link.active {
    color: #cbbaa7;
}

.nav-link.active::after {
    height: 4px;
}

.nav-link .arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-item:hover .nav-link .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 260px;
    padding: 15px 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    font-size: 0.88rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
}

.dropdown-link:hover {
    color: var(--gold);
    padding-right: 30px;
}

.dropdown-link:hover::before {
    height: 60%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--white);
}

.auth-links a {
    padding: 8px 12px;
    transition: var(--transition);
}

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

.auth-divider {
    color: var(--gray-500);
}

/* Cart */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: var(--transition);
}

.cart-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.cart-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    transition: var(--transition);
}

.cart-btn:hover svg {
    fill: var(--gold);
}

.cart-count {
    position: absolute;
    top: -2px;
    left: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--gold);
    color: var(--black-deep);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 35px;
    height: 35px;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Mobile Navigation
   =================================== */
/* התפריט מוסתר ב-transform ולא ב-right שלילי.
   אלמנט position:fixed שממוקם מחוץ למסך יוצר גלילה אופקית,
   ו-overflow-x:hidden על body אינו חוסם אלמנטים fixed.
   transform לא משתתף בחישוב הגלילה כלל. */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--black-rich);
    padding: 100px 40px 40px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(201, 162, 39, 0.1);
    will-change: transform;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

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

.nav-mobile-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile-link,
.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    transition: var(--transition);
}

.nav-mobile-link:hover,
.submenu-toggle:hover {
    color: var(--gold);
}

.submenu-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.submenu-toggle.active .arrow {
    transform: rotate(180deg);
}

.submenu-mobile {
    display: none;
    padding: 0 0 15px 20px;
}

.submenu-mobile.active {
    display: block;
}

.submenu-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.submenu-mobile a:hover {
    color: var(--gold);
    padding-right: 10px;
}

/* ===================================
   HERO SECTION - Cinematic
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.02);
    transition: transform 3s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

/* שכבת הכהיה על תמונת ההירו.
   קודם התחתית הייתה 0.9 - כמעט שחור מלא - והמטבח בתמונה נעלם.
   האווירה בתמונה היא מה שמוכר, ולכן ההכהיה מדודה: מספיק לקריאות
   הטקסט והתפריט, לא יותר. שחור נייטרלי ולא אפור חם, שהצהיב את התמונה. */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.28) 35%,
        rgba(0, 0, 0, 0.34) 65%,
        rgba(0, 0, 0, 0.62) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px 0;
    max-width: 900px;
}

/* התג צמוד לכותרת - מרווח קטן, בלי שורת טקסט נפרדת */
/* display:flex ולא inline-flex: כאלמנט inline התג יושב על קו הבסיס
   של השורה ומשאיר מתחתיו את מקום ה-descender - כ-9px אוויר שלא ניתן
   לשלוט בו. כבלוק הוא צמוד לגמרי והמרווח נקבע רק ע"י margin. */
.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    animation: fadeInDown 1s ease 0.2s both;
}

/* תג "מיוצר בישראל" - סמל מונוכרום, ללא מסגרת וללא צבע.
   הכיתוב כבר חלק מהסמל ולכן אין שורת טקסט נפרדת. */
/* קטן ביחס לכותרת - הוא תג, לא כותרת משנה */
.hero-badge-mark {
    width: clamp(58px, 5vw, 72px);
    height: auto;
    display: block;
    opacity: 0.92;
    filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.45));
}

.hero-badge img {
    margin: 0 auto;
}

/* משקל קל עם ריווח רחב, כמו באתר החי (heebo-light).
   font-weight: 700 יצר כותרת כבדה ודחוסה; אותיות דקות עם אוויר
   ביניהן הן מה שמייצר את המראה המעודן. */
/* הערכים נלקחו מהאתר החי:
   font-size:80px; font-family:heebo-medium; font-weight:bold;
   letter-spacing:0.01em; line-height:normal
   הריווח כמעט אפסי - האותיות נראות רחבות בגלל המשקל והגודל,
   לא בגלל tracking. clamp נוסף כדי שלא תגלוש במובייל. */
/* line-height: 1 ולא normal. הכותרת היא שורה אחת, ולכן הגודל והצורה
   של האותיות זהים לחלוטין - מה שמשתנה הוא רק ה-leading: ב-normal
   נוספים כ-34px אוויר מעל האותיות וכ-35px מתחתיהן, וזה מה שהרחיק
   את הלוגו ואת תת-הכותרת מהמילה "משטחית".
   margin-top שלילי זעיר מצמיד את הלוגו בדיוק כמו באתר החי.
   נמדד מול צילום של האתר החי: הפער לוגו->כותרת הוא 0.33 מגובה
   האותיות, והפער כותרת->תת-כותרת 0.42. */
.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.75rem, 7vw, 80px);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    margin-top: -0.035em;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

/* מהאתר החי: font-size:30px; font-family:heebo-light;
   letter-spacing:normal; line-height:normal */
.hero-subtitle {
    font-size: clamp(1.05rem, 2.6vw, 30px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: normal;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--black-deep);
    background: var(--gold-gradient);
    border: none;
    border-radius: 2px;
    transition: var(--transition);
    animation: fadeInUp 1s ease 1s both;
    box-shadow: var(--shadow-gold);
}

.hero-cta:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.4);
    color: var(--black-deep);
}

/* Video Widget - Below CTA Button */
.hero-video-inline {
    position: relative;
    width: 320px;
    aspect-ratio: 16/9;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(201, 162, 39, 0.3);
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-video-inline:hover {
    transform: scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.3);
}

.hero-video-inline img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.hero-video-inline .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: var(--transition);
}

.hero-video-inline:hover .play-btn {
    background: rgba(0,0,0,0.2);
}

.play-btn-circle {
    width: 50px;
    height: 50px;
    background: rgba(255,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-video:hover .play-btn-circle {
    transform: scale(1.1);
}

.play-btn-circle::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 1.4s both;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ===================================
   CALCULATOR SECTION - Premium
   =================================== */
.calculator-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black-deep) 0%, var(--black-soft) 100%);
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.2), transparent);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.calculator-visual {
    position: relative;
}

.calculator-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.calculator-image::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gold-gradient);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.5;
}

.calculator-image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.calculator-image:hover img {
    transform: scale(1.03);
}

.calculator-info {
    margin-top: 30px;
    padding: 25px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
}

.calculator-info p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.8;
}

.calculator-info a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.calculator-info a:hover {
    color: var(--gold-light);
}

/* Calculator Form */
.calculator-form {
    background: var(--black-medium);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-soft);
}

.calculator-form-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.calculator-form-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.form-group label .required {
    color: var(--gold);
    margin-right: 3px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--black-soft);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--white);
    transition: var(--transition);
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A227' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    padding-left: 40px;
    cursor: pointer;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--white);
    margin-top: 8px;
    opacity: 0.8;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 4px;
    color: #25D366;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.discount-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-group:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--white);
    cursor: pointer;
    flex: 1;
}

.knife-mini-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: white;
    border-radius: 6px;
    padding: 5px;
}

.price-display {
    text-align: center;
    padding: 25px;
    background: var(--black-soft);
    border-radius: 4px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.price-value small {
    font-size: 1.2rem;
}

.btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--black-deep);
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-add-cart svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ===================================
   POPULAR SIZES - Elegant Grid
   =================================== */
.popular-section {
    padding: var(--section-padding) 0;
    background: var(--black-rich);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--white);
    font-size: 1.1rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.size-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--black-medium);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.size-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-3px);
}

.size-card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.size-card-dimension {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
}

.size-card-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
}

.size-card-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.size-card:hover .size-card-btn {
    background: var(--gold);
    border-color: var(--gold);
}

.size-card-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: var(--transition);
}

.size-card:hover .size-card-btn svg {
    fill: var(--black-deep);
}

/* חיווי "נוסף לעגלה" - הכיתה נוספת מ-main.js למשך 1.5 שניות */
.size-card.added {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.size-card.added .size-card-btn {
    background: var(--gold);
    border-color: var(--gold);
}

/* "טען עוד מידות פופולאריות" - דף הבית בלבד, ורק במובייל.
   בדסקטופ הכפתור לא קיים ויזואלית וכל המידות מוצגות כרגיל.
   ההסתרה נעשית ב-CSS ולא בשרת, כדי שכל המידות יישארו ב-HTML
   עבור מנועי חיפוש ושלא יידרש סבב נוסף לשרת. */
.load-more-sizes {
    display: none;
}

@media (max-width: 768px) {
    .popular-grid .size-card-extra {
        display: none;
    }

    /* סלקטור ספציפי יותר מהקודם, ולכן גובר בלי !important */
    .popular-grid .size-card-extra.revealed {
        display: flex;
    }

    .load-more-sizes {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin: -20px 0 40px;
        padding: 16px 24px;
        background: transparent;
        border: 1px solid rgba(201, 162, 39, 0.4);
        border-radius: 4px;
        color: var(--gold);
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        cursor: pointer;
        transition: var(--transition);
    }

    /* חובה: display:flex שלמעלה הוא כלל של המחבר וגובר על
       [hidden] של הדפדפן, ולכן בלי זה הכפתור לא היה נעלם */
    .load-more-sizes[hidden] {
        display: none;
    }

    .load-more-sizes:hover,
    .load-more-sizes:active {
        background: rgba(201, 162, 39, 0.08);
        border-color: var(--gold);
    }

    .load-more-sizes svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        flex-shrink: 0;
    }
}

.size-card.added .size-card-btn svg {
    fill: var(--black-deep);
}

.load-more-btn {
    display: block;
    margin: 0 auto 60px;
    padding: 16px 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 30px;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--gold);
    color: var(--black-deep);
}

/* Knife Addon */
.knife-addon {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--black-medium);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
}

.knife-addon-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    padding: 15px;
}

.knife-addon-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.knife-addon-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.knife-addon-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.knife-addon-content .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 0.9rem;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition);
}

.knife-addon-content .btn-outline:hover {
    background: var(--gold);
    color: var(--black-deep);
}

/* "מה מיוחד בסכין שלכם?" - נפתח רק בלחיצה.
   מוצג בדף הבית (מחשבון + באנר), בדף ההזמנה ובדף העגולה. */
.knife-info {
    margin-bottom: 22px;
}

.knife-info-centered {
    text-align: center;
}

.knife-info-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 7px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.knife-info-toggle:hover,
.knife-info-toggle[aria-expanded="true"] {
    color: var(--gold);
}

.knife-info-toggle svg {
    flex-shrink: 0;
}

.knife-info-chevron {
    transition: transform 0.3s ease;
}

.knife-info-toggle[aria-expanded="true"] .knife-info-chevron {
    transform: rotate(180deg);
}

.knife-info-panel {
    margin-top: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-inline-start: 2px solid var(--gold);
    border-radius: 8px;
    max-width: 640px;
}

.knife-info-panel p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.knife-info-panel p:last-child {
    margin-bottom: 0;
}

.knife-info-panel strong {
    color: var(--gold);
    font-weight: 500;
}

/* אנימציית פתיחה. hidden מוסר ב-JS לפני שהמחלקה נוספת */
.knife-info-panel[hidden] {
    display: none;
}

.knife-info-panel.opening {
    animation: knifeInfoIn 0.3s ease both;
}

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

/* Circular Link */
.circular-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.circular-cta p {
    font-size: 1.5rem;
    font-weight: 300;
}

.circular-cta a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: var(--transition);
}

.circular-cta a:hover {
    color: var(--gold-light);
}

/* ===================================
   ABOUT SECTION - Editorial
   =================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--black-deep);
}

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

.about-content {
    max-width: 550px;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
}

/* Features */
.features-section {
    padding: 80px 0;
    background: var(--black-rich);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

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

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--black-medium);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.2;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
}

/* Miluim Badge - Under Contact Form */
.miluim-badge-contact {
    margin-top: 50px;
    text-align: center;
}

.miluim-badge-contact img {
    max-width: 150px;
    margin: 0 auto;
    opacity: 0.9;
    transition: var(--transition);
}

.miluim-badge-contact img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===================================
   CONTACT SECTION - 3 Columns
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
}

.contact-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

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

/* Contact Map Column */
.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(0.8) contrast(1.1);
}

/* Contact Form */
.contact-form {
    background: var(--black-medium);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 0;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--white);
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

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

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

.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--black-deep);
    background: var(--gold-gradient);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .btn-submit:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
}

/* Map */
.map-section {
    height: 400px;
    background: var(--black-medium);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(0.9);
    opacity: 0.7;
}

/* ===================================
   FOOTER - Minimal Luxury
   =================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--black-deep);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    direction: ltr;
}

.footer-badge {
    height: 120px;
    width: 120px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

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

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

.footer-keywords {
    font-size: 0.8rem;
    color: #ffffff;
    max-width: 500px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #ffffff;
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.sticky-contact-bar .contact-phone,
.sticky-contact-bar .contact-whatsapp {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sticky-contact-bar .contact-phone:hover,
.sticky-contact-bar .contact-whatsapp:hover {
    background: rgba(255,255,255,0.3);
}

.sticky-contact-bar .contact-phone svg,
.sticky-contact-bar .contact-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.sticky-contact-bar .contact-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.sticky-contact-bar .contact-divider {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.accessibility-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--blue-accessibility);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
}

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

.accessibility-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .calculator-container {
        gap: 50px;
    }

    .about-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .nav-desktop,
    .auth-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .calculator-container,
    .about-grid,
    .contact-grid,
    .contact-grid-3col {
        grid-template-columns: 1fr;
    }

    .contact-grid-3col .contact-map {
        order: 3;
        height: 300px;
    }

    .calculator-form {
        padding: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 0 20px;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero-badge svg {
        width: 80px;
    }

    .hero-badge-text {
        font-size: 12px;
    }

    .hero-video {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .knife-addon {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-badge {
        height: 80px;
        width: 80px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .sticky-contact-bar {
        bottom: 15px;
        padding: 8px 15px;
        gap: 10px;
    }

    .sticky-contact-bar .contact-phone,
    .sticky-contact-bar .contact-whatsapp {
        width: 32px;
        height: 32px;
    }

    .sticky-contact-bar .contact-phone svg,
    .sticky-contact-bar .contact-whatsapp svg {
        width: 18px;
        height: 18px;
    }

    .sticky-contact-bar .contact-text {
        font-size: 0.85rem;
    }

    .accessibility-btn {
        bottom: 75px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .accessibility-btn svg {
        width: 22px;
        height: 22px;
    }
}

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

    .hero-cta {
        padding: 15px 35px;
        font-size: 0.95rem;
    }

    .calculator-form {
        padding: 25px;
    }

    .price-value {
        font-size: 2.5rem;
    }

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

/* ===================================
   Cart Popup Modal
   =================================== */
.cart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    background: var(--black-rich);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 40px 32px 32px;
    z-index: 9999;
    width: 90%;
    max-width: 420px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 162, 39, 0.1);
}

.cart-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cart-popup-close {
    position: absolute;
    top: 12px;
    left: 12px;
    background: none;
    border: none;
    color: var(--gray-200);
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cart-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cart-popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: cartPopupBounce 0.5s ease 0.2s both;
}

.cart-popup-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes cartPopupBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.cart-popup-title {
    font-family: 'Heebo', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cart-popup-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.cart-popup-item-name {
    font-weight: 600;
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.cart-popup-item-details {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.cart-popup-detail {
    font-size: 0.85rem;
    color: var(--gray-200);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 20px;
}

.cart-popup-knife {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.cart-popup-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 4px;
}

.cart-popup-summary {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(201, 162, 39, 0.08);
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 500;
}

.cart-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
}

.cart-popup-checkout {
    background: var(--gold-gradient);
    color: var(--black-deep);
}

.cart-popup-checkout:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

.cart-popup-checkout svg {
    fill: var(--black-deep);
}

.cart-popup-continue {
    background: transparent;
    color: var(--gray-200);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-popup-continue:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cart-popup-continue svg {
    fill: currentColor;
}

@media (max-width: 480px) {
    .cart-popup {
        width: 95%;
        padding: 32px 20px 24px;
        border-radius: 16px;
    }

    .cart-popup-title {
        font-size: 1.2rem;
    }

    .cart-popup-item-price {
        font-size: 1.15rem;
    }

    .cart-popup-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
