    /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
 	
	.lt {
	    font-size: 18px;
	    color: yellow;
	}

        .procontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #ffdd40;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 5px 15px;
        }
        
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            padding: 8px;
            width: 200px;
            outline: none;
        }
        
        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .cart-icon {
            position: relative;
            font-size: 20px;
        }
        
        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #ff3860;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Main Layout */
        .main-layout {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }


/* Product Section */
        .product-section {
            padding: 40px 0;
        }
        
        .product-container {
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        /* Image Column */
        .image-column {
            flex: 1;
            flex-basis: 60%;
            min-width: 220px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #fafafa;
        }
        
        .main-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .main-image:hover {
            transform: scale(1.02);
        }

        .section-title {
            font-size: 30px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .thumbnail-container {
            display: flex;
            margin-top: 20px;
            gap: 10px;
        }
        
        .thumbnail {
            width: 70px;
            height: 70px;
            border-radius: 6px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover {
            opacity: 1;
            transform: translateY(-3px);
        }
        
        .thumbnail.active {
            opacity: 1;
            border-color: #2575fc;
        }
        
        /* Details Column */
        .details-column {
            flex: 1;
            flex-basis: 40%;
            min-width: 200px;
            padding: 40px;
            background: white;
        }
        
        .product-brand {
            color: #6a11cb;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .product-title2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #2c3e50;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .current-price {
            font-size: 32px;
            font-weight: 700;
            color: #2575fc;
        }

      .alerta {
          font-size: 15px;
          padding: 5px 10px;
          text-align: center;
      }
        
        .original-price {
            text-decoration: line-through;
            color: #97a6ba;
            margin-left: 12px;
            font-size: 20px;
        }
        
        .discount-badge {
            background: #ff3860;
            color: white;
            padding: 3px 7px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-left: 15px;
        }
        
        .product-description {
            color: #5a6b82;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .product-features {
            margin-bottom: 25px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .feature i {
            color: #6a11cb;
            margin-right: 10px;
        }
        
        .color-options {
            margin-bottom: 25px;
        }
        
        .color-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .colors {
            display: flex;
            gap: 12px;
        }
        
        .color {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .color:hover {
            transform: scale(1.1);
        }
        
        .color.selected {
            outline: 2px solid #2575fc;
            outline-offset: 2px;
        }
        
        .color-1 { background-color: #2563eb; }
        .color-2 { background-color: #1e293b; }
        .color-3 { background-color: #dc2626; }
        .color-4 { background-color: #475569; }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .quantity-title {
            font-weight: 600;
            margin-right: 15px;
            color: #2c3e50;
        }
        
        .quantity-controls {
            display: flex;
            align-items: center;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .quantity-btn {
            background: #f1f5f9;
            border: none;
            width: 40px;
            height: 40px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .quantity-btn:hover {
            background: #e2e8f0;
        }
        
        .quantity-input {
            width: 50px;
            height: 40px;
            text-align: center;
            border: none;
            border-left: 1px solid #e2e8f0;
            border-right: 1px solid #e2e8f0;
            font-size: 16px;
            font-weight: 600;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }


        
        /* Sidebar */
        .sidebar {
            flex: 0 0 300px;
            background: #cad7d9;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        
        .sidebar-section {
            margin-bottom: 15px;
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            padding-bottom: 5px;
            border-bottom: 2px solid #f1f5f9;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 2px;
        }
        
        .category-list a {
            color: #5a6b82;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .category-list a:hover {
            color: #2575fc;
        }
        
        .category-count {
            background: #f1f5f9;
            color: #5a6b82;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .price-filter input {
            width: 100%;
            margin: 10px 0;
        }
        
        .price-range {
            display: flex;
            justify-content: space-between;
            color: #5a6b82;
            font-size: 14px;
        }

        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .filter-tag {
            background: #f1f5f9;
            color: #5a6b82;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-tag:hover {
            background: #2575fc;
            color: white;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
        }
        
        /* Article Section */
        .article-section {
            background: linear-gradient(135deg, #1f1fed, #8e0dd4);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .article-title {
            font-size: 24px;
            font-weight: 700;
            color: yellow;
            margin-bottom: 15px;
        }
        
        .article-content {
            color: white;
            line-height: 1.5;
        }
        
        .article-content p {
            margin-bottom: 10px;
        }

        .hidden {
	    display: none;
	}

/* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;   
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            position: relative;
            height: 150px;
            /*overflow: hidden;*/
            background: white;
        }
        
        .product-image img {
            width: 100%;
           /*height: 100%;*/ 
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #ff3860;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .wishlist-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #97a6ba;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-icon:hover {
            color: #ff3860;
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-category {
            color: #6a11cb;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #2c3e50;
            line-height: 1.4;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .stars {
            color: #fbbf24;
            font-size: 12px;
            margin-right: 5px;
        }
        
        .rating-count {
            color: #97a6ba;
            font-size: 12px;
        }
        
        .product-price {
            margin-top: auto;
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .current-price {
            font-size: 18px;
            font-weight: 700;
            color: #2575fc;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #97a6ba;
            font-size: 14px;
            margin-left: 8px;
        }
        
        .add-to-cart {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 7px;
            border-radius: 6px;
            font-weight: 400;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 190px;
        }
        
        .add-to-cart i {
            margin-right: 8px;
        }
        
        .add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 117, 252, 0.3);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 5px;
            border-radius: 8px;
            background: white;
            color: #5a6b82;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .pagination-item:hover, .pagination-item.active {
            background: #2575fc;
            color: white;
        }

        .pagetxt {
            text-size: 12px;
        }

        .hidetxt {
            display: none;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            margin-top: 40px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-heading {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #2575fc;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #2575fc;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }area

   .pagination {
            margin: 30px 0;
            text-align: center;
        }
        .pagination a, .pagination span {
            display: inline-block;
            padding: 8px 16px;
            margin: 0 5px;
            border: 1px solid #ddd;
            text-decoration: none;
            color: #333;
            border-radius: 3px;
        }
        .pagination a:hover {
            background-color: #f5f5f5;
        }
        .pagination .current-page {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
        }
        .page-info {
            text-align: center;
            color: #666;
            margin-top: 10px;
        }


   /* Responsive Design */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .main-layout {
                flex-direction: column;
            }
            
            .sidebar {
                flex: 1;
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .product-container {
                flex-direction: column;
            }
            
            .image-column  {
                position: relative;
                padding: 0px;
                
            }
            
            .product-description {
            color: #5a6b82;
            margin-bottom: 25px;
            line-height: 1;
            }
            
             p {
                font-size: 13px
            }
            
            .section-title {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            }
            
            .main-image {
                padding: 0px;
                width: 100%;
                height: 100%;
            }
            .details-column{
                padding: 20px;
            }
            
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .header-actions {
                margin-top: 15px;
            }
            
            .alerta {
                font-size: 12px;
                padding: 3px;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
             .action-buttons {
                flex-direction: column;
            }
            
        .pagination {
            margin: 30px 0;
            text-align: center;
        }
        .pagination a, .pagination span {
            padding: 4px 8px;
            font-size: 11px;
        }
        .pagination a:hover {
            background-color: #f5f5f5;
        }
        .pagination .current-page {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
        }
        .page-info {
            text-align: center;
            color: #666;
            margin-top: 10px;
        }

            
        }
        
        
        @media (max-width: 576px) {
            
            .sidebar {
                padding: 12px;
            }
            
            .sidebar-section {
                margin-bottom: 12px;
            }
            
            .filter-tag {
                font-size: 10px;
            }
            
            .product-title2 {
                font-size: 18px;
            }
            
             .product-title {
                font-size: 24px;
            }
            
            .current-price {
                font-size: 26px;
            }
            
            .thumbnail {
                width: 50px;
                height: 50px;
            }
            
            .action-buttons {
                flex-direction: column;
            }  
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
              gap: 10px;                
              margin: auto;
            }
          
            .product-info {
                padding: 8px;
            }
            
            .product-category {
                font-weight: 300px;
                font-size: 10px;
                margin-bottom: 3px;
            }
            .add-to-cart {
                font-size: 10px;
                width: 100px;
                padding: 3px;
                margin-bottom: 0px;
            }
          
            .product-image {
                 height: 100%;
                width: 100%;
            }  
            
            .pagetxt {
            text-size: 8px;
        }
            
            .product-title {
            font-size: 13px;
            font-weight: 300;
                margin-left: 0px;
            margin-bottom: 6px;
            color: #2c3e50;
            line-height: 1;
            }
            
            .current-price {
            font-size: 13px;
            font-weight: 500;
            color: #2575fc;
            text-align: right;
                margin-bottom: 4px;
        }
            .original-price {
            text-decoration: line-through;
            color: #97a6ba;
            font-size: 11px;
            margin-left: 8px;
        }
          
            .view-options {
                width: 100%;
                justify-content: space-between;
            }
        }
