/* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
        }
        .login-container{
            width: 1001px;
            max-width: 450px;
            padding: 50px;
            margin-bottom: 20px;
            margin: 0 50%;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            border-radius: 50px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

/* Responsive Navbar Enhancements */
.main-nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    align-items: center;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.main-nav ul li a:hover {
    background: rgba(0,0,0,0.04);
    color: #111;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mobile-nav,#myLinks {
    display: none;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    position: relative;
}

.mobile-nav a,#myLinks a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav a:last-child,#myLinks a:last-child {
    border-bottom: none;
}

.cart-icon, .cart-btn {
    background: transparent;
    border: none;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .search-container { display: none; }
    .header-container { padding: 12px 0; }
    .logo { font-size: 22px; }
}
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: black;
            text-decoration: none;
        }
        
        .logo span {
            color: red;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: purple;
        }
        
        .cart-icon {
            
            position: relative ;
            cursor: pointer;
        }
        
        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: purple;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(shopping.png.jpg);
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            border-radius: 20px;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: green;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: yellow;
        }
        
        /* Featured Products */
        .featured {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 32px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #d10516;
            margin: 15px auto 0;
        }
        
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            height: 300px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .product-price {
            font-size: 20px;
            font-weight: 700;
            color:blue;
            margin-bottom: 15px;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 10px;
            background-color: black;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .add-to-cart:hover {
            background-color: #e63946;
        }
 /* About Content */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #2d3748;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: #4a5568;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            margin-top: 70px;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }
        
        .stat-item {
            flex: 1;
            min-width: 200px;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Team Section */
        .team {
            margin-bottom: 60px;
        }
        
        .team h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #2d3748;
        }
        
        .team-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            width: 280px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .team-member img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .member-info p {
            color: #6a11cb;
            margin-bottom: 15px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            color: #6a11cb;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #2575fc;
        }
        /* Values Section */
        .values {
            margin-bottom: 60px;
        }
        
        .values h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #2d3748;
        }
        
        .values-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .value-item {
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            font-size: 40px;
            color: #6a11cb;
            margin-bottom: 20px;
        }
        
        .value-item h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
   /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .stat-item {
                min-width: 150px;
            }
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #e63946;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        /* Shopping Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background-color: white;
            /* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); */
            transition: right 0.3s;
            z-index: 1000;
            overflow-y: auto;
        }
        
        .cart-sidebar.active {
            right: 0;
        }
        
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .close-cart {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .cart-items {
            padding: 20px;
        }
        
        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            margin-right: 15px;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-title {
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: #e63946;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .cart-item-remove {
            color: #999;
            font-size: 12px;
            cursor: pointer;
        }
        
        .cart-total {
            padding: 20px;
            border-top: 1px solid #eee;
            text-align: right;
            font-size: 18px;
            font-weight: 600;
        }
        
        #checkout-button {
            display: block;
            width: 100%;
            padding: 15px;
            margin-top: 20px;
            background-color: #e63946;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        #checkout-button:hover {
            background-color: #c1121f;
        }
        
        /* Overlay
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
         */
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                padding: 15px 0;
                position: relative;
            }
            
            nav {
                display: none !important;
            }
            
            nav ul {
                margin-top: 15px;
            }
            
            nav ul li {
                margin-left: 15px;
            }
            
            .hero {
                height: 400px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
        }
        .checkout {
margin-top: 2rem;
}
        /* Checkout page styles */
        .checkout-container{
            max-width: 1000px;
            margin: 40px auto;
            background: #fff;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 24px;
        }

        .checkout-form{
            padding: 8px 4px;
        }
        .checkout-form h2{margin-bottom:12px;color:#222}
        .form-row{display:flex;gap:12px}
        .form-group{margin-bottom:14px}
        .form-group label{display:block;font-size:14px;margin-bottom:6px;color:#444}
        .form-group input, .form-group textarea{width:100%;padding:12px;border:1px solid #e6e6e6;border-radius:8px;background:#fafafa}
        .form-group textarea{min-height:100px;resize:vertical}
        .place-order-btn{background:#1a73e8;color:#fff;padding:12px 16px;border-radius:8px;border:0;font-weight:700;cursor:pointer}
        .place-order-btn:disabled{opacity:0.6;cursor:not-allowed}

        .order-summary{
            background:#fafafa;padding:18px;border-radius:10px;border:1px solid #f0f0f0;
        }
        .order-summary h3{margin-bottom:12px}
        .summary-item{display:flex;align-items:center;justify-content:space-between;padding:8px 0;border-bottom:1px dashed #eee}
        .summary-item:last-child{border-bottom:0}
        .summary-total{font-weight:800;font-size:18px;margin-top:12px;text-align:right}

        @media (max-width:900px){
            .checkout-container{grid-template-columns:1fr;padding:18px}
        }


/* Content Sections */
.page-header{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/shopping.png.jpg);
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            height: 500px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
}
        .policy-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .policy-nav {
            flex: 1;
            min-width: 250px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        .policy-nav h3 {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #6a11cb;
            color: #2d3748;
        }
        
        .policy-nav ul {
            list-style: none;
        }
        
        .policy-nav li {
            margin-bottom: 10px;
        }
        
        .policy-nav a {
            color: #4a5568;
            text-decoration: none;
            display: block;
            padding: 8px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .policy-nav a:hover, .policy-nav a.active {
            background-color: #f0f4ff;
            color: #6a11cb;
            padding-left: 15px;
        }
        
        .policy-details {
            flex: 3;
            min-width: 300px;
        }
        
        .policy-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .policy-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #2d3748;
            display: flex;
            align-items: center;
        }
        
        .policy-section h2 i {
            margin-right: 10px;
            color: #6a11cb;
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: #4a5568;
        }
        
        .policy-section ul, .policy-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            margin-bottom: 10px;
            color: #4a5568;
        }
        
        /* Info Cards */
        .info-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .info-card {
            flex: 1;
            min-width: 250px;
            background: #f0f4ff;
            border-left: 4px solid #6a11cb;
            padding: 20px;
            border-radius: 5px;
        }
        
        .info-card h3 {
            color: #2d3748;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .info-card h3 i {
            margin-right: 10px;
            color: #6a11cb;
        }
        
        /* Table Styles */
        .shipping-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .shipping-table th, .shipping-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .shipping-table th {
            background-color: #f0f4ff;
            color: #2d3748;
        }
        
        .shipping-table tr:hover {
            background-color: #f8fafc;
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: #4a5568;
            padding: 10px 0;
        }
        /* Animations */
        
        /* Responsive Design for shipping*/
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .policy-content {
                flex-direction: column;
            }
            
            .policy-nav {
                position: static;
                margin-bottom: 20px;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
        }
/* LOGIN STYLES */

#log{
    padding: 0 0 0 0;
    margin-bottom: 100px;
    margin-top: 20px;
}
.our-store{
    margin-left: 20px;
    transition: transform 0.5s ease;
}
.our-store img{
    width: 100%;
    height: 100%;
    margin: 30px;
    border-radius: 40px;
    transition: transform 0.5s ease;
    position: left;
    margin-left: auto;
}
.our-store img:hover{
    transform: scale(1.05);
}

.form-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 20px;

}

.form-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background-color: green;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.form-toggle button.active {
  background-color: sky-blue;
  color: black;
}

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

.form input {
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.main-btn {
  padding: 12px;
  background-color: brown;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.or {
  text-align: center;
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
}

.social-buttons button {
  width: 100%;
  margin-bottom: 8px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.google {
  background-color: red;
}

.facebook {
  background-color: blue;
}

.twitter {
  background-color: black;
}

.hidden {
  display: none;
}
    .payment {
      font-family: Arial, sans-serif;
      background: #f9fafb;
      margin: 0;
      padding: 20px;
    }
    .tabcontainer {
      max-width: 500px;
      margin: auto;
      background: solid white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .h1 {
      font-size: 22px;
      margin-bottom: 20px;
      text-align: center;
    }
    .tabs {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .tab {
      flex: 1;
      padding: 10px;
      text-align: center;
      border: 1px solid #ccc;
      background: #f3f4f6;
      cursor: pointer;
      font-size: 14px;
      transition: 0.2s;
    }
    .tab.active {
      background: #2563eb;
      color: #fff;
      border-color: #2563eb;
    }

.icon-btn {
    background: transparent;
    color: #333;
    border: 0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    margin-left: auto;
}

.icon-btn:hover {
    background: #f0f0f0;
}


/* When overlay is active the menu is open; ensure overlay covers content */
@media (min-width: 992px) {
    /* keep menu accessible on larger screens but hidden by default */
    .icon-btn {
        display: none;
    }
}
    .form-section {
      display: none;
    }
    .form-section.active {
      display: block;
    }
    label {
      font-size: 14px;
      font-weight: bold;
      display: block;
      margin-top: 10px;
      margin-bottom: 5px;
    }
    input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .butn {
      margin-top: 20px;
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 6px;
      background: #2563eb;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: 0.2s;
    }
    .butn:hover {
      background: #1d4ed8;
    }

/* .mobile-container {
  max-width: 80px;
  margin: auto;
  background-color: white;
  height: 10px;
  color: white;
  border-radius: 10px;
} */

.topnav {
  overflow: hidden;
  background-color: white;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  float: left;
  color: white;
  padding: 14px 16px;
  text-decoration: black;
  font-size: 17px;
}

.topnav a.icon {
  float: right;
}

.topnav a:hover {
  background-color: black;
  color: black;
}

.active {
  background-color: #04AA6D;
  color: white;
}

/* Hero Section Styles */
.hero-first {
  background: linear-gradient(180deg, #fffafa 0%, #f7f9fc 100%);
  padding: 40px 0;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero-grid {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 280px;
}

.hero-left .promo {
  display: inline-block;
  background: #fff4e6;
  color: #b24a00;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero-left h1 {
  font-size: 2rem;
  margin: 8px 0 12px;
  color: #111;
  line-height: 1.05;
}

.hero-left > p {
  margin: 0 0 18px;
  color: #444;
  font-size: 1rem;
}

.hero-search-form {
  display: flex;
  gap: 8px;
  margin: 18px 0 20px;
}

.hero-search-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.98rem;
}

.hero-search-form button {
  padding: 12px 16px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}

.hero-cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.hero-cta-buttons .btn-primary {
  background: #1a73e8;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
}

.hero-cta-buttons .btn-secondary {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #e6eef8;
  color: #111;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.hero-trust-list {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #666;
  font-size: 0.95rem;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-list strong {
  color: #111;
}

.hero-right {
  flex: 1;
  min-width: 280px;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.hero-image-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hero-image-item img.small {
  height: 120px;
}

.hero-image-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.hero-image-label.small {
  left: 8px;
  bottom: 8px;
  padding: 4px 6px;
  font-size: 0.8rem;
}

.hero-image-label.trending {
  background: #ff6b6b;
  font-weight: 700;
}

.hero-bottom-buttons {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.hero-bottom-buttons .btn-offer {
  padding: 10px 14px;
  border-radius: 10px;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.hero-bottom-buttons .btn-view {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: #111;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}