 /* ===== SECTION STYLES ===== */
        .grid-section {
            margin-bottom: 80px;
            padding: 30px;
            background: rgba(224, 224, 224, 0.2);
            border-radius: 20px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 1);
        } 

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(59, 130, 246, 0.2);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #003003;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }

        .section-title i {
            color: #003003;
            font-size: 1.5rem;
        }

        .section-count {
            background: rgba(59, 130, 246, 0.1);
            color: #003003;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
        }

        /* ===== AUTO MASONRY GRID:column-first-design ===== */
        /*
        .auto-masonry {
            columns: 4;
            column-gap: 25px;
            margin-top: 20px;
        }

        @media (max-width: 1650px) {
            .auto-masonry {
                columns: 3;
            }
        }
        @media (max-width: 1200px) {
            .auto-masonry {
                columns: 2;
            }
        }

        @media (max-width: 768px) {
            .auto-masonry {
                columns: 1;
            }
            
            .grid-section {
                padding: 20px;
            }
            
            
        }*/
        
        
        /* ===== AUTO MASONRY GRID:row-first-design ===== */    
        .auto-masonry {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        
        @media (max-width: 1650px) {
            .auto-masonry {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 1200px) {
            .auto-masonry {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .auto-masonry {
                grid-template-columns: 1fr;
            }
        }

        /* ===== AUTO-SIZING ITEM ===== */
        .auto-item {
            background: #FFFFFF;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(148, 163, 184, 0.1);
            backdrop-filter: blur(10px);
            display: inline-block;
            width: 100%;
            margin-bottom: 25px;
            break-inside: avoid;
            page-break-inside: avoid;
        }

        .auto-item:hover {
            transform: translateY(-8px);
            border-color: #3b82f6;
            box-shadow: 0 20px 40px rgba(0, 205, 0, 0.3);
            background: rgba(0, 205, 5, 0.1);
        }

        /* Section-specific hover colors */
        .new-arrivals .auto-item:hover {
            border-color: #10b981;
        }

        .top-selling .auto-item:hover {
            border-color: #f59e0b;
        }

        .featured .auto-item:hover {
            border-color: #8b5cf6;
        }

        /* ===== IMAGE ===== */
        .item-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .auto-item:hover .item-image {
            transform: scale(1.1);
        }

        .image-container {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        /* ===== SECTION-SPECIFIC BADGES ===== */
        .item-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            color: #003003;
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 0.5px;
            z-index: 10000;
            cursor: -webkit-grab; cursor: grab;
        }
        

        /* New Arrivals badges */
        .new-arrivals .item-badge {
            background: linear-gradient(135deg, rgba(0,200,0,0.2), rgba(0,200,0,0.3));
        }
        
        .item-badge:hover:after  { 
             content:" \2190 click to show all items ";
        }
        
        .new-arrivals .item-badge:hover  {
             background: linear-gradient(135deg, rgba(200,255,0,1), rgba(200,250,0,0.9));
             
        }

        /* Top Selling badges */
        .top-selling .item-badge {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        /* Featured badges */
        .featured .item-badge {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        /* ===== CONTENT ===== */
        .item-content {
            padding: 24px;
        }

        .item-title {
            font-size: clamp(2.0rem, 2.3vw, 2.3rem);
            font-weight: 900;
            margin-bottom: 12px;
            color: #003003;
            line-height: 1.3;
            word-wrap: break-word;
        }

        .item-description {
            color: #003003;
            font-size: clamp(1.2rem, 1.5vw, 1.5rem);
            margin-bottom: 20px;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Auto font sizing based on content length */
        .auto-item[data-content-length="short"] .item-description {
            font-size: 0.9rem;
        }

        .auto-item[data-content-length="medium"] .item-description {
            font-size: 0.95rem;
        }

        .auto-item[data-content-length="long"] .item-description {
            font-size: 1rem;
        }

        .auto-item[data-content-length="very-long"] .item-description {
            font-size: 1rem;
            line-height: 1.7;
        }

        /* ===== PRICE ===== */
        .price-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 20px 0;
            padding: 18px 0;
            border-top: 1px solid rgba(148, 163, 184, 0.1);
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
            flex-wrap: wrap;
        }

        .price-current {
            font-size: clamp(2.0rem, 2.5vw, 2.5rem);
            font-weight: 800;
            color: #003003;
        }

        .price-original {
            font-size: clamp(1.5rem, 1.9vw, 1.9rem);
            color: #94a3b8;
            text-decoration: line-through;
            font-weight: 500;
        }

        .discount-badge {
            padding: 5px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            margin-left: auto;
            cursor: pointer;
        }

        .new-arrivals .discount-badge {
            background: linear-gradient(135deg, #00FF00, #059669);
            color: white;
        }

        .top-selling .discount-badge {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .featured .discount-badge {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
        }
        

        /* ===== BUTTONS ===== */
        
        .action-buttons {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            position: relative;
        }
        
        .action-btn {
            padding: 13px 18px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            white-space: nowrap;
        }
        
        /* Add to Cart Button */
        .btn-add {
            background: linear-gradient(165deg, #00FF00, #059669);
            color: #003003;
        }
        
        .btn-add:hover {
            background: #00FF00;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }
        
        /* Quantity Controls Container */
        .quantity-container {
            padding: 10px 15px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(165deg, rgba(0, 255, 0, 0.1), rgba(5, 150, 105, 0.1));
            border: 2px solid #059669;
            position: relative;
            min-height: 54px;
        }
        
        
        
        /* Quantity Buttons */
        .btn-minus, .btn-plus {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-weight: 900;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid #059669;
            background: white;
            color: #003003;
        }
        
        .btn-minus:hover, .btn-plus:hover {
            background: #059669;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
        }
        
        .btn-minus {
            color: #dc2626;
        }
        
        .btn-minus:hover {
            background: #dc2626;
            border-color: #dc2626;
        }
        
        /* Quantity Display */
        .quantity-display {
            min-width: 40px;
            text-align: center;
            font-size: 1.8rem;
            font-weight: 900;
            color: #003003;
            padding: 5px 10px;
            background: white;
            border-radius: 8px;
            border: 2px solid rgba(0, 128, 0, 0.2);
        }
        
        /* Delete Button */
        .btn-delete {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            font-size: 16px;
            font-weight: 900;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 0;
            z-index: 5000;
            display: '';
        }
        
        .btn-delete:hover {
            transform: scale(1.2) rotate(90deg);
            background: #dc2626;
            box-shadow: 0 6px 12px rgba(220, 38, 38, 0.4);
        }
        
        .btn-details {
            background: rgba(208, 213, 224, 0.5);
            color: #003003;
            border: 1px solid rgba(148, 163, 184, 0.2);
        }
        
        .btn-details:hover {
            background: rgba(148, 163, 184, 0.2);
            border-color: rgba(148, 163, 184, 0.3);
            transform: translateY(-3px);
        }

        /* ===== SECTION NAVIGATION ===== */
        .section-nav {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .section-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(148, 163, 184, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .section-dot:hover {
            transform: scale(1.3);
            background: #3b82f6;
        }

        .section-dot.active {
            background: #3b82f6;
            transform: scale(1.3);
        }

        .section-dot.active::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 2px solid #3b82f6;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* ===== FOOTER ===== */
        .grid-footer {
            text-align: center;
            padding: 40px;
            margin-top: 40px;
            color: #94a3b8;
            border-top: 1px solid rgba(148, 163, 184, 0.1);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 980px) {
            .action-buttons {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .action-buttons {
                grid-template-columns: 1fr;
            }
            
            .main-header h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .section-nav {
                display: none;
            }
        }
/*----------------Modern-display-css end-------------------*/        


.shadow_css {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; 
  margin: 20px auto;
  color:rgba(0,204,0,1);
  font-weight:900;
  width: auto;
}

.shadow_css:hover { 
  box-shadow: 0 10px 5px  rgba(0, 204, 11, 0.1); 
  border:solid thin rgba(0, 204, 11, 0.2);
  border-radius: 25px;
  transform: translateY(-2px);
}

/* Fixed message box styling */
.fixed-bottom-message {
    position: fixed;
    bottom: 5px;
    right: 10px;
    width: 100%;
    max-width: 500px;
    background-color: red; /* For browsers that do not support gradients */
    background-image: linear-gradient(180deg, red, rgba(0,204,0,0.9));
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: clamp(3.0rem, 3.5vw, 3.5rem);
    z-index: 1000; /* Ensure it stays above other content */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; 
    border-radius: 12px;
    box-sizing: border-box;
}
.fixed-bottom-message:hover { 
  box-shadow: 0 10px 5px  rgba(0, 204, 11, 0.1); 
  border:solid thin rgba(0, 204, 11, 0.2);
  border-radius: 25px;
  transform: translateY(-5px);
}

