 :root {
      /* "Happy" & Fresh Palette */
      --primary: #329337;    /* Vivid Leaf Green */
      --primary-hover: #cb0000;
      --secondary: #8BC34A;  /* Light Green / Lime */
      --accent: rgb(255, 213, 0);     /* Sunshine Yellow */
      
      --dark: #263238;       /* Sharp Charcoal (Not muddy) */
      --light: #ffffff;      /* Pure White */
      --bg-warm: #FFFDE7;    /* Very subtle sunny cream for sections */
      --gray: #546E7A;       /* Cool Gray */
      --shadow: 0 15px 35px rgba(56, 142, 60, 0.15); /* Soft green shadow */
    }

    /* --- Base Styles --- */
    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
    html { scroll-behavior: auto; }
    body { 
      font-family: 'Poppins', sans-serif; 
      background: var(--light); 
      color: var(--dark); 
      overflow-x: hidden; 
      line-height: 1.6; 
    }

    /* Typography */
    h1, h2, h3, h4 { color: var(--primary); line-height: 1.2; font-weight: 700; }
    p { color: var(--gray); margin-bottom: 1rem; font-weight: 400; }
    a { text-decoration: none; color: inherit; transition: 0.3s; cursor: pointer; }
    
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    section { padding: 100px 0; position: relative; }
    .hidden { display: none !important; }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 12px 30px; border-radius: 50px; font-weight: 600; font-size: 1rem;
      cursor: pointer; border: none; outline: none; transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: relative; overflow: hidden;
    }
    
    .btn-green { background: var(--primary); color: white; }
    .btn-green:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(56, 142, 60, 0.3); }
    
    .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
    .btn-outline:hover { background: var(--primary); color: white; }
    
    .btn-sm { padding: 8px 20px; font-size: 13px; border-radius: 8px; }

    /* --- HEADER --- */
    header {
      position: fixed; top: 0; left: 0; right: 0;
      padding: 10px 0; z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      backdrop-filter: blur(10px);
    }

    .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
    
    /* Image Logo */
    .logo-img { 
      height: 50px; 
      width: auto; 
      display: block;
    }
    
    .desktop-nav { display: flex; gap: 32px; align-items: center; }
    .desktop-nav a { 
      font-weight: 600; font-size: 15px; color: var(--dark); opacity: 0.8; transition: all 0.3s;
    }
    .desktop-nav a:not(.btn):hover { color: var(--primary); opacity: 1; }
    
    .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
    .bar { width: 28px; height: 3px; background: var(--primary); border-radius: 2px; }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
      background: white; z-index: 1001; padding: 100px 40px;
      display: flex; flex-direction: column; gap: 24px;
      box-shadow: -10px 0 40px rgba(0,0,0,0.1);
      transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .mobile-menu.active { right: 0; }
    .mobile-menu a { font-size: 18px; font-weight: 600; color: var(--primary); }
    
        /* Close Button inside Mobile Menu */
    .menu-close-btn {
        position: absolute;
        top: 25px;
        right: 30px;
        font-size: 32px;
        color: var(--dark); /* Uses your existing dark color */
        cursor: pointer;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .menu-close-btn:hover {
        color: var(--primary-hover); /* Turns red/active color on hover */
        background: #f5f5f5;
        transform: rotate(90deg); /* Adds a nice spin effect */
    }

    /* --- HERO --- */
    .hero { 
      height: 97vh; min-height: 600px; 
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; text-align: center;
      padding-top: 80px;
    }
    .hero-slider { position: absolute; inset: 0; z-index: 0; }
    .slide-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: 0; transform: scale(1.1);
    }
    .hero-overlay { 
      position: absolute; inset: 0; 
      /* Brighter Gradient */
      background: linear-gradient(180deg, rgba(56, 142, 60, 0.3) 0%, rgba(27, 94, 32, 0.7) 100%); 
      z-index: 1; 
    }
    .hero-content { 
      position: relative; z-index: 2; color: white; 
      max-width: 900px; margin: 0 auto; 
      display: flex; flex-direction: column; align-items: center; 
    }
    .hero-title { 
      font-size: clamp(48px, 6vw, 80px); 
      margin-bottom: 24px; font-weight: 800; line-height: 1.1; color: #ffffff;
      letter-spacing: -1.5px; text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .hero-text { 
      font-size: clamp(18px, 2vw, 22px); margin-bottom: 40px; opacity: 1;
      color: #fff; max-width: 650px; font-weight: 500; line-height: 1.6;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    /* Scroll Down Indicator */
    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        color: white;
        text-align: center;
        cursor: pointer;
        opacity: 0.9;
        transition: opacity 0.3s;
    }
    .scroll-down:hover { opacity: 1; transform: translateX(-50%) scale(1.1); }
    .scroll-down i {
        font-size: 24px;
        animation: bounce 2s infinite;
        text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }

    /* Section Headers */
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .section-header h3 { font-size: clamp(32px, 4vw, 42px); margin-bottom: 15px; color: var(--primary); letter-spacing: -0.5px; }
    .section-header p { font-size: 16px; opacity: 0.8; color: var(--gray); }

    /* --- CARDS & GRID --- */
    .story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .card {
      background: white; padding: 40px; border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02);
      transition: transform 0.3s ease;
    }
    .card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
    
    /* Story Slider Animation */
    .story-slider-wrapper {
        overflow: hidden; padding: 20px 0; width: 100%;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .story-track {
        display: flex; gap: 30px; width: max-content;
        animation: scrollTrack 30s linear infinite;
    }
    .story-track:hover { animation-play-state: paused; }

    /* Story Card Styling */
    .testimonial-card {
        min-width: 350px; max-width: 350px;
        background: white; padding: 30px; border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f8fafc;
        cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
    }
    .testimonial-card:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
        border-color: #388E3C;
    }
    
    
    /* --- UNIFIED MODAL SYSTEM (Works for both Enquiries & Stories) --- */
    .modal-overlay {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.8); /* Dark Slate Overlay */
        backdrop-filter: blur(5px);
        
        /* This centers the card perfectly */
        display: none; 
        align-items: center;
        justify-content: center;
        
        z-index: 10000 !important; /* Higher than Header (1000) */
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    /* This class triggers the fade-in when JS adds it */
    .modal-overlay.active, 
    .modal-overlay[style*="display: flex"] {
        display: flex !important;
        opacity: 1;
    }
    
    /* The actual white box (used for both .modal-box and .modal-card) */
    .modal-box, .modal-card {
        background: white;
        padding: 35px;
        border-radius: 24px;
        width: 90%;
        max-width: 550px;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    @keyframes modalPop {
        from { opacity: 0; transform: scale(0.9) translateY(20px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
    }
    
    /* The X button */
    .modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #94a3b8;
        transition: all 0.2s;
        z-index: 10;
    }
    
    .modal-close:hover {
        color: #ef4444;
        transform: scale(1.1);
    }
        
    
    
    

    /* Story Popup Modal Styles */
    .modal-close {
        position: absolute; top: 15px; right: 20px; font-size: 28px;
        background: none; border: none; cursor: pointer; color: #94a3b8; transition: color 0.2s;
    }
    .modal-close:hover { color: #ef4444; }
    .modal-review { font-size: 18px; line-height: 1.6; color: #334155; font-style: italic; margin: 20px 0; }
    .modal-stars { color: #FFD600; font-size: 24px; letter-spacing: 2px; }
    
    /* --- PRODUCT CARDS --- */
    .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 40px; }
    .product-card {
      background: white; border-radius: 20px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: all 0.3s ease;
      cursor: pointer; display: flex; flex-direction: column;
      border: 1px solid #f0f0f0;
    }
    .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
    
    .p-img-wrapper { 
        height: 220px; overflow: hidden; position: relative; background: #fff;
        display: flex; align-items: center; justify-content: center;
        border-bottom: 1px solid #f9f9f9;
    }
    .p-img-wrapper img { height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .p-img-wrapper img { transform: scale(1.08); }
    
    .p-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
    .p-brand { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary); font-weight: 700; margin-bottom: 6px; display: block; }
    .p-content h4 { font-size: 18px; margin-bottom: 5px; color: var(--dark); font-weight: 600; }
    .p-info { font-size: 13px; color: var(--gray); margin-bottom: 12px; font-weight: 500; }
    .p-price { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 15px; display: block; margin-top: auto; }
    
    .p-snippet { font-size: 13px; color: #78909c; margin-bottom: 15px; line-height: 1.5; }
    .p-ean { font-size: 11px; color: #b0bec5; margin-bottom: 15px; font-family: monospace; }

    /* --- CATALOG TOOLBAR --- */
    .catalog-header {
        background: var(--primary); color: white; padding: 160px 0 80px; text-align: center;
    }
    .products-toolbar {
        background: white; padding: 25px 35px; border-radius: 16px; margin-bottom: 40px; margin-top: -40px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08); display: flex; flex-wrap: wrap; gap: 20px;
        align-items: center; justify-content: space-between; border: 1px solid #fff; position: relative; z-index: 10;
    }
    .search-input {
        width: 280px; padding: 12px 20px; border: 1px solid #e0e0e0; border-radius: 50px;
        font-family: inherit; font-size: 14px; outline: none; transition: 0.3s;
        background: #f9f9f9;
    }
    .search-input:focus { border-color: var(--secondary); background: white; box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2); }
    select {
        padding: 12px 20px; border: 1px solid #e0e0e0; border-radius: 50px;
        font-family: inherit; font-size: 14px; outline: none; cursor: pointer; background: white;
        color: var(--dark); font-weight: 500;
    }
    select:hover { border-color: var(--secondary); }

    /* --- DETAIL VIEW & GALLERY --- */
    .detail-container { padding-top: 140px; padding-bottom: 80px; }
    .detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
    
    .gallery-wrapper { width: 100%; }
    .main-img { 
      width: 100%; object-fit: cover; 
      border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
      margin-bottom: 15px; transition: opacity 0.3s ease;
      border: 1px solid #eee; background: #fff;
    }
    .sub-imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .sub-img { 
      width: 100%; height: 100px; object-fit: cover; 
      border-radius: 12px; cursor: pointer; opacity: 0.6; 
      transition: all 0.3s ease; border: 1px solid #eee; background: #fff;
    }
    .sub-img:hover, .sub-img.active { opacity: 1; transform: translateY(-2px); border-color: var(--primary); }
    
    .detail-content h1 { font-size: 42px; margin-bottom: 10px; color: var(--dark); letter-spacing: -1px; }
    .detail-price { font-size: 36px; color: var(--primary); font-weight: 700; margin-bottom: 25px; display: block; }
    .detail-desc { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 35px; }

    .spec-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
    .spec-table td { padding: 18px 0; border-bottom: 1px solid #f0f0f0; font-size: 15px; }
    .spec-table td:first-child { color: var(--gray); width: 40%; font-weight: 500; }
    .spec-table td:last-child { font-weight: 600; color: var(--dark); }
    
    .ean-tag { font-family: monospace; background: var(--bg-warm); padding: 8px 12px; border-radius: 4px; color: var(--dark); display: inline-block; margin-top: 20px; font-size: 14px; border: 1px solid #f0f0f0; }

    /* Testimonials */
    .testimonial-card {
      background: white; padding: 40px; border-radius: 24px;
      border: 1px solid #f0f0f0; height: 100%;
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.03);
    }
    .stars { color: var(--accent); margin-bottom: 20px; font-size: 18px; }
    .client-info { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
    
    /* Contact & Map */
    .contact { background: #0f172a; color: white; padding: 120px 0; }   
    .contact h3 { color: white; font-size: 36px; margin-bottom: 10px; }
    .contact p { color: #cfd8dc; font-size: 16px; margin-bottom: 40px; }
    .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .map-container {
      margin-top: 30px; border-radius: 24px; overflow: hidden; height: 260px; width: 100%;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 4px solid rgba(255,255,255,0.1);
    }
    .form-control {
      width: 100%; padding: 18px; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
      color: white; margin-bottom: 20px; font-size: 15px; transition: 0.3s;
    }
    .form-control:focus { outline: none; border-color: var(--secondary); background: rgba(255,255,255,0.1); }

    /* Footer */
    footer { background: var(--primary); color: white; padding: 100px 0 30px; font-size: 15px; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; margin-bottom: 60px; }
    .footer-heading { color: var(--accent); font-weight: 700; margin-bottom: 24px; display: block; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
    .footer-links li { margin-bottom: 14px; }
    .footer-links a { color: rgba(255,255,255,0.85); }
    .footer-links a:hover { color: white; padding-left: 6px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 30px; text-align: center; color: rgba(255,255,255,0.7); font-size: 14px; }

    /* Social Icons */
    .socials { margin-top: 30px; display: flex; gap: 15px; }
    .social-icon { 
      width: 40px; height: 40px; border-radius: 50%; 
      background: rgba(255,255,255,0.15); 
      display: flex; align-items: center; justify-content: center; 
      transition: 0.3s; color: white; 
    }
    .social-icon:hover { background: var(--accent); transform: translateY(-5px); color: var(--dark); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

    /* --- UNIFIED QUICK ACTION BUTTON (Stacking Upward) --- */
    .fab-container {
      position: fixed; bottom: 30px; right: 30px; z-index: 2000;
      display: flex; flex-direction: column; align-items: center; gap: 15px;
    }

    /* The main toggle button */
    .fab-main {
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--accent); color: var(--dark);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2); cursor: pointer;
      border: none; outline: none; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .fab-main:hover { transform: scale(1.1); background: #ffeb3b; }
    .fab-main i { font-size: 24px; }

    /* The options (hidden by default) */
    .fab-options {
      display: flex; flex-direction: column-reverse; gap: 15px;
      
      opacity: 0; visibility: hidden; transform: translateY(20px);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    }
    
    /* Reveal options on hover of container */
    .fab-container:hover .fab-options {
      opacity: 1; visibility: visible; transform: translateY(0);
    }

    .fab-action {
      width: 50px; height: 50px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transition: transform 0.2s; font-size: 20px;
    }
    .fab-action:hover { transform: scale(1.1); }
    .fab-wa { background: #25D366; }
    .fab-call { background: white; color: var(--primary); }
    
    @media (max-width: 900px) {
      .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
      .desktop-nav { display: none; }
      .menu-toggle { display: flex; }
      .hero-title { font-size: 38px; }
      .detail-grid { grid-template-columns: 1fr; gap: 30px; }
      section { padding: 80px 0; }
      .footer-grid { text-align: center; gap: 40px; }
      .socials { justify-content: center; }
      .footer-links ul { padding-left: 0; }
    }

    /* --- ENQUIRY MODAL STYLES --- */
    .modal-overlay.active { opacity: 1; visibility: visible; }
    
    .modal-overlay.active .modal-box { transform: translateY(0); }

    .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
    .modal-close { font-size: 24px; cursor: pointer; color: var(--gray); transition: 0.2s; }
    .modal-close:hover { color: var(--primary-hover); }

    .modal-label { font-size: 12px; font-weight: 600; color: var(--gray); margin-bottom: 5px; display: block; text-transform: uppercase; }
    .read-only-field { 
        background: #f1f8e9; border: 1px solid #c5e1a5; color: var(--dark); 
        font-weight: 600; cursor: not-allowed; 
    }

    .modal-box input, 
    .modal-box textarea,
    .modal-box .form-control {
        color: #333333 !important;
        background: #ffffff;
        border: 1px solid #ddd;
    }

    .modal-box ::placeholder {
        color: #999999 !important;
        opacity: 1;
    }

    /* --- BLOG & INSIGHTS STYLES --- */
    .blog-slider-wrapper {
        overflow: hidden; padding: 20px 0; width: 100%;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .blog-track {
        display: flex; gap: 30px; width: max-content;
        animation: scrollTrack 40s linear infinite; 
    }
    .blog-track:hover { animation-play-state: paused; }

    @keyframes scrollTrack {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 15px)); } 
    }

    .blog-card {
        min-width: 320px; max-width: 320px;
        background: white; border-radius: 16px; overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #f0f0f0; transition: transform 0.3s;
        cursor: pointer;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

    .b-img { height: 180px; width: 100%; object-fit: cover; }
    .b-content { padding: 20px; }
    .b-date { font-size: 12px; color: var(--secondary); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; display: block;}
    .b-title { font-size: 18px; line-height: 1.4; margin-bottom: 10px; color: var(--dark); font-weight: 700; }
    .b-excerpt { 
        font-size: 14px; color: var(--gray); line-height: 1.6; 
        display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; 
    }

    .blog-header { background: var(--bg-warm); padding: 140px 0 60px; text-align: center; }
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; padding: 60px 0; }
    .blog-grid .blog-card { max-width: 100%; min-width: auto; } 

    .article-container { max-width: 800px; margin: 0 auto; padding: 140px 20px 80px; }
    .article-img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; margin-bottom: 40px; }
    .article-meta { color: var(--gray); margin-bottom: 20px; font-size: 14px; display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
    .article-body { font-size: 18px; line-height: 1.8; color: var(--dark); }
    .article-body h3 { margin-top: 30px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
    .article-body p { margin-bottom: 25px; }
    
    
   /* --- SKELETON LOADER ANIMATION --- */
    @keyframes shimmer {
        0% { background-position: -1000px 0; }
        100% { background-position: 1000px 0; }
    }
    
    .skeleton {
        background: #f6f7f8;
        background-image: linear-gradient(90deg, #f0f0f0 0px, #f8f8f8 40px, #f0f0f0 80px);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
    }

    /* --- NEW SKELETON CARD LAYOUT --- */
    .skeleton-card {
        border: 1px solid #f1f5f9;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: #fff;
        height: 100%;
        min-height: 320px;
    }
    .skeleton-img { height: 200px; width: 100%; border-radius: 0; }
    .skeleton-body { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
    .skeleton-line { height: 16px; border-radius: 4px; }
    .skeleton-btn { height: 38px; border-radius: 50px; margin-top: auto; width: 100%; }