* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #111827 0%, #374151 50%, #000000 100%);
    background-attachment: fixed;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    overflow-x: hidden;
    min-height: 100vh;
    color: #f9fafb;
    padding-top: 80px; /* Add space for fixed navbar */
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

/* Logo Section */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #54b796 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Desktop Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.nav-icon {
    font-size: 1rem;
    opacity: 0.8;
}

/* Action Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.action-btn.secondary {
    background: rgba(55, 65, 81, 0.8);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(75, 85, 99, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-icon {
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #d1d5db;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(148, 163, 184, 0.2);
    margin: 16px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-nav {
        gap: 4px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav,
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .navbar-logo {
        gap: 8px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .mobile-nav {
        top: 65px;
    }
    
    body {
        padding-top: 65px;
    }
}

#outerdiv {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-height: 600px;
    width: 100%;
    max-width: 100%;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

#div1 {
    background: linear-gradient(135deg, #111827 0%, #374151 30%, #1f2937 60%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    min-height: 400px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    padding: 20px 10px;
    overflow: hidden;
}

#div1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(148, 163, 184, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: floatingBubbles 12s ease-in-out infinite;
    z-index: 1;
}

#div1 > * {
    position: relative;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingBubbles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-10px) rotate(240deg);
        opacity: 0.9;
    }
}

/* Cool geometric pattern overlay */
#div1 .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.08) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(148, 163, 184, 0.05) 50%, transparent 60%);
    background-size: 30px 30px;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, -60px 60px;
    }
}

#navigation {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    flex-wrap: wrap;
}

#navigation > img {
    height: 100%;
    max-height: 50px;
}

#navBar {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    color: white;
    flex-wrap: wrap;
    gap: 10px;
}

/* Optional: Navbar item styling */
#navBar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

#navBar a:hover {
  background-color: rgba(18, 123, 168, 0.2);
  border-radius: 4px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.nav-brand {
  flex: 1;
}


#src {
    width: 95%;
    max-width: 800px;
    margin: 20px auto;
    height: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#src > select,
#src > input {
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#src > select:focus,
#src > input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

#src > select {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
}

#src > input {
    flex: 2;
    min-width: 200px;
}

#src > button {
    height: 45px;
    padding: 0 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

#src > button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

#src > button:active {
    transform: translateY(-1px);
}

#links {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    color: rgba(255, 255, 255, 0.9);
    text-decoration-color: transparent;
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

a {
    text-decoration: none;
    margin-right: 12px;
    color: rgb(0, 0, 0);
}

a:hover {
    color: rgb(0, 0, 0);
}

#div1 h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #f8fafc, #e2e8f0, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

#div1 p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    color: #e2e8f0;
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    }
}

/* Add floating particles effect */
#div1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(148, 163, 184, 0.6), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(226, 232, 240, 0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(99, 102, 241, 0.5), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(148, 163, 184, 0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkles 8s linear infinite;
    z-index: 1;
}

@keyframes sparkles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

#product a {
    color: black;
}

#product img {
    display: block;
    margin: auto;
    width: 30%;
    height: 60%;
}
 #div2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 20px;
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    justify-content: center;
    text-align: center;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

#div2:hover {
    background: rgba(30, 41, 59, 0.9);
}

#div2 > div {
    background: rgba(51, 65, 85, 0.8);
    padding: 15px 10px;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

#div2 > div:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

#div2 > div img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

#div2 > div:hover img {
    transform: scale(1.1);
}

#div2 > div span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    color: #f1f5f9;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    #div2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px 15px;
        width: 98%;
    }
    
    #div2 > div {
        padding: 15px 10px;
        min-height: 120px;
        border-radius: 12px;
    }
    
    #div2 > div img {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    #div2 > div span {
        font-size: 13px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    #div2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px 10px;
        width: 96%;
        margin: 15px auto;
    }
    
    #div2 > div {
        padding: 12px 8px;
        min-height: 110px;
        border-radius: 10px;
    }
    
    #div2 > div img {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    
    #div2 > div span {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        word-wrap: break-word;
    }
}
#div2 > div:hover img {
    transform: scale(1.1); /* Image scaling effect on hover */
}

#special,
#bestoffer,
#appliance,
#salon {
    padding: 2% 3%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    margin: 20px 10px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

#bestoffer > div,
#appliance > div,
#salon > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 20px auto;
}

#bestoffer img,
#appliance img,
#salon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#bestoffer h1,
#appliance h1,
#salon h1 {
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
    font-size: 2rem;
    color: #f1f5f9;
}

#bestoffer p,
#appliance p,
#salon p {
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
    color: #cbd5e1;
}

#bestoffer h5,
#appliance h5,
#salon h5 {
    margin: 10px 0 5px 0;
    padding: 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #f1f5f9;
}

#bestoffer > div > div,
#appliance > div > div,
#salon > div > div {
    background: rgba(51, 65, 85, 0.8);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

#bestoffer > div > div:hover,
#appliance > div > div:hover,
#salon > div > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.small {
    padding: 2% 3%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 20px 10px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.small img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: auto;
    border-radius: 8px;
}

#footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #f9fafb;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.app-section .app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-buttons img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #4b5563;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-brand h2 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.footer-brand p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

.footer-copyright p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.85rem;
    text-align: right;
}

hr {
    height: 1px;
    background: rgb(228, 231, 233);
    border: none;
}

/* Remove old store styles since we've redesigned the footer */

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    #div1 {
        min-height: 350px;
        padding: 15px 10px;
    }
    
    #div1 h1 {
        font-size: 1.8rem;
        margin: 20px 0;
    }
    
    #navigation {
        height: auto;
        min-height: 60px;
        padding: 10px 15px;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    #navBar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0 0 10px 10px;
    }
    
    #navBar.mobile-active {
        max-height: 200px;
        padding: 15px 0;
    }
    
    #navBar a {
        font-size: 14px;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        text-align: center;
    }
    
    #navBar a:last-child {
        border-bottom: none;
    }
    
    #src {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }
    
    #src > select,
    #src > input,
    #src > button {
        width: 100%;
        max-width: none;
    }
    
    #links {
        font-size: 14px;
        width: 95%;
    }
    
    #bestoffer,
    #appliance,
    #salon {
        padding: 15px;
        margin: 15px 5px;
    }
    
    #bestoffer h1,
    #appliance h1,
    #salon h1 {
        font-size: 1.5rem;
    }
    
    #bestoffer > div,
    #appliance > div,
    #salon > div {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .small {
        padding: 15px;
        margin: 15px 5px;
    }
    
    #footer {
        padding: 30px 15px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    #footer > div:first-child {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    #store {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    #store > div {
        min-width: auto;
        width: 100%;
    }
}

/* Tablet and medium screen responsive adjustments */
@media (max-width: 768px) {
    #src {
        flex-direction: column;
        gap: 10px;
        width: 90%;
        padding: 0 15px;
    }
    
    #src > select,
    #src > input {
        width: 100%;
        min-width: unset;
        max-width: none;
        flex: none;
        height: 45px;
        font-size: 16px;
    }
    
    #src > button {
        width: 48%;
        height: 45px;
        font-size: 15px;
        font-weight: 600;
        margin: 2px 1%;
    }
    
    #src {
        display: flex;
        flex-wrap: wrap;
    }
    
    #src > select,
    #src > input {
        flex: 1 1 100%;
    }
    
    #src > button {
        flex: 1 1 48%;
    }
}

@media (max-width: 480px) {
    #div1 {
        min-height: 350px;
        padding: 15px 10px;
        background-size: cover;
        background-position: center;
    }
    
    #div1 h1 {
        font-size: 1.4rem;
        margin: 20px 0;
        text-align: center;
        line-height: 1.3;
    }
    
    #div1 p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    #src {
        padding: 0 5px;
        flex-direction: column;
        gap: 10px;
        width: 95%;
        max-width: none;
    }
    
    #src > select,
    #src > input,
    #src > button {
        height: 48px;
        font-size: 16px;
        width: 100%;
        min-width: unset;
        max-width: none;
        flex: none;
        border-radius: 10px;
        padding: 0 15px;
    }
    
    #src > button {
        font-weight: 600;
        margin: 5px 0;
        min-height: 48px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    #src > button:active {
        transform: translateY(1px);
    }
    
    #links {
        font-size: 13px;
        padding: 0 15px;
        margin-top: 15px;
        line-height: 1.4;
    }
    
    #bestoffer,
    #appliance,
    #salon {
        padding: 15px 10px;
        margin: 15px 8px;
    }
    
    #bestoffer h1,
    #appliance h1,
    #salon h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    #bestoffer img,
    #appliance img,
    #salon img {
        height: 150px;
    }
    
    .small {
        padding: 10px;
        margin: 10px 5px;
    }
    
    #footer {
        padding: 20px 10px 10px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-brand h2 {
        font-size: 1.3rem;
    }
    
    .app-buttons img {
        height: 40px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    #div1 {
        padding: 10px 5px;
        min-height: 320px;
    }
    
    #div1 h1 {
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    #src {
        width: 98%;
        gap: 8px;
    }
    
    #src > select,
    #src > input,
    #src > button {
        height: 44px;
        font-size: 15px;
        padding: 0 12px;
    }
    
    #div2 {
        padding: 12px 8px;
        gap: 10px;
    }
    
    #div2 > div {
        padding: 10px 6px;
        min-height: 100px;
    }
    
    #div2 > div img {
        width: 35px;
        height: 35px;
    }
    
    #div2 > div span {
        font-size: 11px;
    }
    
    #links {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* Hover Effects */
#div2 > div:hover,
#bestoffer > div > div:hover,
#appliance > div > div:hover,
#salon > div > div:hover,
.small:hover {
    transform: scale(1.05);
}

/* Overlay Setup */
.overLayer1,
.overLayer2 {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s;
}

.showOverLayer1,
.showOverLayer2 {
    z-index: 1;
    opacity: 1;
}

/* Login & Signup */
.loginForm,
.signupForm {
    width: 350px;
    padding: 30px 20px;
    border-radius: 7px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    transition: top 2s;
}

.showLogin,
.showSignup {
    top: 50%;
    z-index: 5;
}

.loginForm input,
.signupForm input {
    width: 100%;
    margin-bottom: 15px;
    height: 35px;
}

.loginForm button,
.signupForm button {
    background-color: black;
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    width: 200px;
    display: block;
    margin: auto;
}

.loginForm span,
.signupForm span {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: red;
    color: white;
    text-align: center;
    cursor: pointer;
}

.loginForm p,
.signupForm p {
    text-align: center;
    margin: 0;
}

.loginForm a,
.signupForm a {
    color: blue;
}
