/* ========== SEXY VARIABLES ========== */
:root {
  --hot-pink: #e83a9a;
  --dark-pink: #c51d7e;
  --black: #121212;
  --yellow: #ffd700;
  --gold: #d4af37;
  --cream: #f8f4e9;
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(232, 58, 154, 0.5));
}

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--cream);
  text-shadow: 0 0 15px rgba(232, 58, 154, 0.7);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  background-color: var(--yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--yellow);
}

/* ========== HERO SECTION ========== */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(232, 58, 154, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--hot-pink), var(--dark-pink));
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(232, 58, 154, 0.4);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(232, 58, 154, 0.6);
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 100px 10%;
  background-color: var(--black);
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 5px 5px 0 0 var(--hot-pink);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--yellow);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
  padding: 100px 10%;
  background: linear-gradient(to bottom, var(--black), #1a1a1a);
}

.products-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(232, 58, 154, 0.3);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--yellow);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.5rem;
  margin: 20px 20px 10px;
  color: var(--cream);
}

.product-card p {
  margin: 0 20px 15px;
  color: #aaa;
}

.price {
  display: block;
  margin: 0 20px 20px;
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.2rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 100px 10%;
  background-color: var(--black);
  color: var(--cream);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--hot-pink);
}

.contact-section p {
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 15px;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--hot-pink);
}

.contact-form textarea {
  grid-column: span 2;
  min-height: 150px;
}

.contact-form button {
  grid-column: span 2;
  background: linear-gradient(45deg, var(--hot-pink), var(--dark-pink));
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 58, 154, 0.3);
}

.social-links {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}
.social-img{
  width: 50px;
  height: 50px;
}
.logoo{
  border-radius: 50%;
}

.social-links a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--hot-pink); /* Replace with your desired hover color */
  transform: scale(1.1);
}



/* ========== FOOTER ========== */
footer {
  background-color: #0a0a0a;
  padding: 50px 10% 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--hot-pink);
}

.copyright {
  color: #555;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .about-image img {
    box-shadow: 15px 15px 0 0 var(--hot-pink);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .contact-form textarea {
    grid-column: span 1;
  }
  
  .contact-form button {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .about-image img {
    box-shadow: 10px 10px 0 0 var(--hot-pink);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 2s ease-in-out;
}

.hero-animation img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(232, 58, 154, 0.3);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.add-to-cart {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
}

.cart-icon {
  position: relative;
}

.cart-count {
  background: red;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
  top: -8px;
  right: -10px;
}

.cart-modal {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  width: 300px;
  padding: 15px;
  display: none; /* Hidden by default */
  z-index: 1000;
}

.cart-modal.active {
  display: block;
}

/* Navbar styles remain same as your code */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--cream);
  border-radius: 5px;
  transition: 0.3s;
}


/* ========== GLAM NAVBAR ========== */
.navbar {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(232, 58, 154, 0.2);
  border-bottom: 3px solid var(--hot-pink);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--cream);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--hot-pink);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--hot-pink);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  order: 2; /* Ensures hamburger appears after logo */
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--cream);
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .logo-container {
    order: 1;
  }
  
  .hamburger {
    display: flex;
    order: 2;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    order: 3;
  }

  .nav-links.active {
    right: 0;
  }

  /* Hamburger animation when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}