body {
  margin: 0;
  font-family: "Josefin Sans", Arial, sans-serif;
  background: #fff;
  caret-color: transparent;
}

/* Nav */
.navbar {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar .logo {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar .logo img {
  max-height: 100%;
  max-width: 100%;
  width: 40%;
  object-fit: contain;
}

.navbar .nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #626262;
  font-weight: 600;
  font-size: 19px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #ff6b35;
}

.navbar .nav-links a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  color: #626262;
  background: #ff6b35;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar .nav-links a:hover::before {
  width: 100%;
}

.navbar .icons {
  border: 2px solid blue;
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

/* Contact Button */
.contact-button {
  height: 100%;
  width: 10%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5rem;
}

.contact {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  background: #ff6b35;
  color: white;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
  text-decoration: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact:hover {
  background: #e55a2b;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

/* Hamburger Menu Styles */
.navbar .hamburg {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-right: 1rem;
}

.bar-1,
.bar-2,
.bar-3 {
  width: 100%;
  height: 4px;
  background-color: #333;
  transition: 0.3s;
  border-radius: 2px;
  display: block;
}

/* Hamburger Animation */
.navbar .hamburg.active .bar-1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar .hamburg.active .bar-2 {
  opacity: 0;
}

.navbar .hamburg.active .bar-3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
  .navbar .logo img {
    width: 50%;
  }
  .navbar .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 80px;
    position: relative;
  }

  .navbar .logo img {
    height: 100%;
    width: auto;
  }

  .navbar .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar .nav-links.mobile-active {
    left: 0;
  }

  .navbar .nav-links a {
    font-size: 24px;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    width: 80%;
    text-align: center;
  }

  .contact-button {
    margin-right: 2rem;
    width: auto;
  }

  .contact {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Show hamburger at 400px and below */
@media (max-width: 400px) {
  .navbar {
    justify-content: space-between;
  }

  .navbar .hamburg {
    display: flex;
  }

  .navbar .nav-links {
    display: none;
  }

  .navbar .nav-links.mobile-active {
    display: flex;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    /* padding-top: 3rem; */
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar .nav-links.mobile-active a {
    font-size: 24px;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    width: 80%;
    text-align: center;
  }

  .navbar .logo {
    width: 50%;
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .navbar .logo img {
    height: 100%;
    width: auto;
  }

  .contact-button {
    width: fit-content;
    margin-right: 0;
  }

  .contact {
    padding: 8px 12px;
    font-size: 15px;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: slideInUp 0.8s ease-out;
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Josefin Sans", Arial, sans-serif;
}

.btn-primary {
  background: #d4af37;
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #d4af37;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Overlay for better text readability */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 5;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.Patachitra {
  padding-top: 0;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.section-title.show {
  opacity: 1;
  transform: translateY(0);
  animation: slideInUp 1s ease forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-grid {
  height: 500px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4757;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-view,
.btn-cart {
  padding: 10px 20px;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-view:hover,
.btn-cart:hover {
  background: white;
  color: #333;
}

.btn-cart {
  padding: 12px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.sale-price {
  text-decoration: none;
  color: #ff4757;
  border: 2px solid #ff4757;
  border-radius: 1rem;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sale-price:hover {
  background: #ff4757;
  color: white;
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

.view-all {
  padding: 15px 40px;
  padding-top: 20px;
  font-size: 1.1rem;
  background: #d4af37;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Products Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .product-image {
    height: 200px;
  }

  .product-info h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 50px 0;
    padding-top: 0;
  }

  .products-grid {
    height: max-content;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .product-card {
    height: 500px;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .product-image {
    height: 70%;
  }

  .product-info {
    padding: 15px;
  }

  .product-info h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .price {
    flex-direction: column;
    gap: 5px;
  }
  .cotton-saree-section {
    padding-top: 0 !important;
  }
}

/* Cotton Saree Collection Section */
.cotton-saree-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.coll-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.saree-header {
  text-align: center;
  margin-bottom: 60px;
}

.saree-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background: #d4af37;
}

.section-subtitle::before {
  left: -120px;
}

.section-subtitle::after {
  right: -120px;
}

.saree-collection {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.saree-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 500px;
}

.saree-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.saree-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.saree-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.saree-card:hover .saree-image img {
  transform: scale(1.1);
}

.saree-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 40px;
  transition: all 0.3s ease;
}

.saree-card:hover .saree-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.saree-content {
  color: white;
  text-align: center;
  width: 100%;
}

.saree-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  font-family: "Dancing Script", cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.saree-content p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
}

.btn-explore {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
}

.saree-card:hover .btn-explore {
  opacity: 1;
  transform: translateY(0);
}

.btn-explore:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Cotton Saree Responsive */
@media (max-width: 1024px) {
  .saree-collection {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .saree-header .section-title {
    font-size: 1.9Srem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 80px;
  }

  .section-subtitle::before {
    left: -100px;
  }

  .section-subtitle::after {
    right: -100px;
  }
}

@media (max-width: 768px) {
  .cotton-saree-section {
    padding: 60px 0;
  }

  .saree-collection {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .saree-card {
    height: 500px;
  }

  .saree-header .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    display: none;
  }

  .saree-overlay {
    padding: 30px;
  }

  .saree-content h3 {
    font-size: 2rem;
  }

  .saree-content p {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .saree-card {
    height: 500px;
  }

  .saree-header .section-title {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .saree-overlay {
    padding: 20px;
  }

  .saree-content h3 {
    font-size: 1.8rem;
  }

  .saree-content p {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .btn-explore {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 96px);
    min-height: 400px;
  }

  .slide-content {
    width: 100%;
  }

  .slide-content h1 {
    width: 100%;
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
    width: 200px;
  }

  .btn-secondary {
    width: fit-content;
  }

  .nav-arrow {
    font-size: 1.2rem;
    padding: 12px 15px;
  }

  .prev-arrow {
    left: 15px;
  }

  .next-arrow {
    right: 15px;
  }

  .slide-indicators {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .slide-content {
    padding: 0 15px;
  }

  .slide-content h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .nav-arrow {
    display: none;
  }
}

/* Footer Styles */
.footer {
  background-image: url("Images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 51, 102, 0.85);
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-header {
  text-align: center;
  margin-bottom: 50px;
}

.footer-header h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 20px;
}

/* Logo and Contact Info */
.footer-info {
  display: flex;
  gap: 10px;
}

.footer-logo {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 150px;
  width: auto;
  background-color: white;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #d4af37;
}

.contact-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  font-size: 1.2rem;
  color: #d4af37;
  margin-top: 5px;
  min-width: 20px;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: white;
}

.contact-item p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Social Media Section */
.footer-social {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-social h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon.facebook {
  background: #3b5998;
}

.social-icon.facebook:hover {
  background: #2d4373;
  transform: translateY(-3px);
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
  transform: translateY(-3px);
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.twitter:hover {
  background: #1991db;
  transform: translateY(-3px);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.youtube:hover {
  background: #cc0000;
  transform: translateY(-3px);
}

.social-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* Footer Bottom - Copyright and Payment */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  gap: 40px;
}

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  width: 100%;
  text-align: center;
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.footer-copyright p:first-child {
  font-weight: 600;
  color: white;
}

.payment-methods {
  text-align: right;
}

.payment-methods p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.payment-icons img {
  height: 30px;
  width: auto;
  border-radius: 4px;
  background: white;
  padding: 3px;
  transition: transform 0.2s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-header h2 {
    font-size: 1.8rem;
  }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  gap: 40px;
}

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-methods img {
  height: 30px;
  width: auto;
  border-radius: 4px;
  background: white;
  padding: 3px;
}

.social-media {
  text-align: right;
}

.social-media p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.social-icons a {
  width: 200px;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding-left: 5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon.facebook {
  background: #3b5998;
}

.social-icon.facebook:hover {
  background: #2d4373;
  transform: translateY(-2px);
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-icon.instagram:hover {
  transform: translateY(-2px);
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.twitter:hover {
  background: #1991db;
  transform: translateY(-2px);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-header h2 {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .social-media {
    text-align: center;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-header h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .payment-methods img {
    height: 25px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Add this to the end of your styles.css file after removing duplicate footer styles */

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-header h2 {
    font-size: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .payment-methods {
    text-align: center;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .contact-info {
    width: 70%;
    align-items: flex-start;
    padding-left: 0;
  }
  
  .social-icons a {
    padding-left: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-header h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .footer-logo {
    width: 70%;
  }
  
  .footer-logo img {
    height: 100px;
  }
  
  .footer-logo h3 {
    width: 100%;
    font-size: 1.5rem;
  }
  
  .payment-icons img {
    height: 25px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-item {
    text-align: left;
    justify-content: center;
  }
}
