/* Global Styles */
body { 
    font-family: Arial, sans-serif;
    margin: 0; 
    padding: 0; 
    background: #f8f9fa;
}



/* ========= FIRST NAVBAR ======== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #333;
  color: white;
  position: relative;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1em;
}

.nav-links a:hover {
  color: #e95e02;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-btn, .logout-btn, .cart-btn {
  background: white;
  text-decoration: none;
  color: #d45500;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1em;
  border-radius: 5px;
  position: relative;
}



/* Cart Counter */
.cart-btn {
  position: relative;
}

.cart-btn span {
  background: red;
  color: white;
  font-size: 14px;
  border-radius: 50%;
  padding: 4px 8px;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      background: #444;
      text-align: center;
      padding: 10px 0;
      transition: all 0.3s ease-in-out;
  }

  .nav-links.show {
      display: flex;
  }

  .menu-toggle {
      display: block;
  }
}
  
  
  /* ========= SECOND NAVBAR ======== */
  
  .navbar-2 {
    display: flex;
    justify-content: center;
    padding: 12px;
    background: #f8f8f8;
    border-bottom: 2px solid #ddd;
  }
  
  .search-container {
    display: flex;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    width: 55%;
    background: white;
    transition: 0.3s ease-in-out;
  }
  
  /* Category Dropdown */
  .category-dropdown {
    border: none;
    background: #eee;
    padding: 12px;
    font-size: 1em;
    cursor: pointer;
    outline: none;
    border-right: 2px solid #ccc;
  }
  
  .category-dropdown:focus {
    background: #ddd;
  }
  
  /* Search Input */
  .search-input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 1em;
    outline: none;
  }
  
  /* Search Button */
  .search-btn {
    border: none;
    background: #ff6f00;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.3s;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  
  .search-btn:hover {
    background: #e65c00;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .search-container {
        width: 90%;
    }
  }

/* ===== PROFILE PAGE ======== */

.profile-container {
    display: flex;
}

.container { 
    display: flex; 
    width: 100%; 
    margin-bottom: 20px;
}

/* Sidebar */
.sidebar { 
    width: 25%; 
    background: #ffffff; 
    padding: 20px; 
    text-align: center; 
    border-right: 1px solid #ddd;
}

.sidebar img { 
    width: 90px; 
    height: 90px; 
    border-radius: 50%; 
    margin-bottom: 10px; 
    border: 2px solid #007bff;
}

.sidebar h3 {
    margin-bottom: 5px;
    color: #333;
    font-size: 18px;
}

.sidebar p {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.sidebar button { 
    width: 100%; 
    margin: 8px 0; 
    padding: 12px; 
    background: #f5f5f5; 
    border: 1px solid #ddd; 
    border-radius: 5px;
    cursor: pointer; 
    text-align: left; 
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s, transform 0.2s;
}

.sidebar button:hover { 
    background: #ddd; 
    transform: translateX(5px);
}





.content { 
    flex: 1; 
    padding: 30px; 
    background: #fff;
    overflow-y: auto;
}

.content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Headers */
h2 {
    color: #333;
    margin-bottom: 15px;
}

/* Inputs and Forms */
input, button { 
    width: 100%; 
    padding: 12px; 
    margin: 10px 0; 
    font-size: 16px; 
    border-radius: 5px; 
    border: 1px solid #ddd; 
    box-sizing: border-box;
}

/* Buttons */
button { 
    background: #007bff; 
    color: white; 
    border: none; 
    cursor: pointer; 
    transition: background 0.3s, transform 0.2s;
}

button:hover { 
    background: #0056b3; 
    transform: scale(1.03);
}

/* Input Groups */
.input-group { 
    display: flex; 
    gap: 15px;
    flex-wrap: wrap;
}

.input-group input { 
    flex: 1; 
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 30%;
    }

    .content img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .container { 
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .sidebar button {
        justify-content: center;
        text-align: center;
    }
    
    .content {
        padding: 20px;
    }

    .content img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .sidebar img {
        width: 70px;
        height: 70px;
    }

    .sidebar h3 {
        font-size: 16px;
    }

    .sidebar p {
        font-size: 12px;
    }

    .sidebar button {
        font-size: 14px;
        padding: 10px;
    }

    .content {
        padding: 15px;
    }

    .content img {
        max-width: 100%;
    }

    h2 {
        font-size: 18px;
    }

    input, button {
        padding: 10px;
        font-size: 14px;
    }
}


/* ======= FOOTER SECTION ======== */

footer {
    background-color: #ebebeb;
    color: #000000;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
  }
  
  /* Footer Rows */
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
  }
  
  /* First Row */
  .first-row .column {
    width: 18%;
    text-align: left;
  }
  
  .first-row h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #000000;
  }
  
  .first-row h4 a {
    color: #000000;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
  }
  
  .first-row h4 a:hover {
    color: #d45500;
    text-decoration: underline;
    font-size: 26px;
    font-weight: bold;
  }
  
  .first-row p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
  }
  
  .first-row ul {
    list-style: none;
    padding: 0;
  }
  
  .first-row ul li {
    margin-bottom: 6px;
  }
  
  .first-row ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
  }
  
  .first-row ul li a:hover {
    color: #d45500;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .social-icons i {
    font-size: 35px;
    transition: transform 0.3s ease-in-out;
  }
  
  .social-icons .facebook {
    color: #3b5998;
  }
  
  .social-icons .facebook:hover {
    color: #052e85;
  }
  
  .social-icons .instagram {
    color: #c13584;
  }
  
  .social-icons .instagram:hover {
    color: #e92e6c;
  }
  
  .social-icons .twitter {
    color: #000000;
  }
  
  .social-icons .twitter:hover {
    color: #3d3d3f;
  }
  
  .social-icons .youtube {
    color: #ff0000;
  }
  
  .social-icons .youtube:hover {
    color: #c70000;
  }
  
  .social-icons .tiktok {
    color: #000;
  }
  
  .social-icons .tiktok:hover {
    color: #2e2e2e;
  }
  
  /* Second Row */
  .second-row {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Currency & Country Dropdowns */
  .currency-select,
  .country-select {
    width: 48%;
    padding: 12px;
    background: #222;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
  }
  
  /* Subscription Box */
  .subscribe-box {
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 25px;
    padding: 6px;
    max-width: 400px;
    margin-top: 5px;
  }
  
  .subscribe-box input {
    flex: 1;
    border: none;
    padding: 12px;
    background: none;
    color: #fff;
    font-size: 14px;
  }
  
  .subscribe-box input::placeholder {
    color: #bbb;
  }
  
  .subscribe-box button {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
  }
  
  .subscribe-box button:hover {
    background: #d62839;
  }
  
  .disclaimer {
    font-size: 12px;
    color: #000000;
    margin-top: 8px;
  }
  
  /* Third Row */
  .third-row {
    border-top: 1px solid #444;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  /* Payment Icons */
  .payment-methods {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .payment-methods img {
    width: 50px;
    border-radius: 5px;
    height: auto;
    margin: 0 8px;
    transition: transform 0.3s ease-in-out;
  }
  
  .payment-methods img:hover {
    transform: scale(1.1);
  }
  
  /* Mobile Site Link */
  .third-row a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
  }
  
  .third-row a:hover {
    text-decoration: underline;
    color: #e63946;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
  
    .first-row .column {
        width: 100%;
        margin-bottom: 20px;
    }
  
    .second-row {
        flex-direction: column;
        text-align: center;
    }
  
    .second-row .currency-select, .currency-select {
        width: 100%;
        margin-bottom: 10px;
    }
  
    .currency-select,
    .country-select {
        width: 100%;
        margin-bottom: 10px;
    }
  
    .subscribe-box {
        max-width: 100%;
    }
  
    .third-row {
        flex-direction: column;
        text-align: center;
    }
  
    .payment-methods img {
        margin: 5px;
    }
  }
  