@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap");

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --secondary-text: #666666;
  --light-gray: #f5f5f5;
  --border-color: #eeeeee;
  --accent-color: #000000;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header & Navigation */
.top-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
}

.blinking {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.2; }
}

.top-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 5px;
}

.mobile-menu-toggle, .menu-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle i, .menu-close i {
    width: 28px;
    height: 28px;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    background: #000;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-main {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
}

.logo .fashion {
    color: #ff3b3b;
}

.logo .aurah {
    color: #ffffff;
}

.sub-nav {
    display: flex;
    gap: 2rem;
    padding: 0;
}

.sub-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease;
}

.sub-nav a:hover {
    color: #ff3b3b;
}

.sub-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #ff3b3b;
    transition: width 0.3s ease;
}

.sub-nav a:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center 10%;  Slightly favors the top for better portrait framing */
}

.slide7 img {
    object-position: center 40%;
}

.slide9 img {
    object-position: center 20%;
}

.slide10 img {
    object-position: center 30%;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 300;
  opacity: 0.9;
  animation: slideUp 1.2s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: white;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: black;
  color: white;
  transform: translateY(-5px);
}

/* Promo Icons */
.promo-icons {
  display: flex;
  justify-content: space-around;
  padding: 5rem 0;
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.promo-item {
  flex: 1;
  padding: 0 1rem;
}

.promo-item i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.promo-item p {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Brands Section */
.brands {
  background-color: var(--light-gray);
  padding: 4rem 0;
  text-align: center;
}

.brands h2 {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--secondary-text);
}

.brand-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-item {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.6;
  transition: var(--transition);
}

.brand-item:hover {
  opacity: 1;
}

/* Product Section */
.products {
  padding: 8rem 0;
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.gallery-group {
    margin-bottom: 4rem;
    transition: all 0.5s ease;
}

.gallery-group.hidden {
    display: none;
}

.view-more-btn {
    display: block;
    margin: 4rem auto 0;
    padding: 1.2rem 4rem;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: inherit;
    border-radius: 2px;
}

.view-more-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
    letter-spacing: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: black;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 0 2rem;
}

.product-card {
  text-align: left;
  cursor: pointer;
}

.product-image {
  width: 100%;
  aspect-ratio: 1/1.3;
  background-color: var(--light-gray);
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.discounted-price {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.discount-badge {
    background-color: #ff3b3b;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 700;
}

/* Brand Story */
.brand-story {
  padding: 8rem 2rem;
  background: var(--light-gray);
  text-align: center;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content h2 {
  margin-bottom: 2rem;
}

.story-content p {
  color: var(--secondary-text);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-info {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

.contact-details h3 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.contact-details p {
    /* display: flex; */
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--secondary-text);
}

.contact-details i {
    color: #000;
    width: 20px;
}

.whatsapp-group {
    margin-top: 3rem;
}

.wa-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 2.8rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    border: 2px solid #25D366;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-join-btn i {
    color: #25D366;
    width: 24px;
    height: 24px;
}

.wa-join-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.wa-join-btn:hover i {
    color: #fff;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background: #20b858;
}

.whatsapp-float i,
.whatsapp-float svg {
    font-size: 32px; /* or width/height for svg */
}


/* Responsive adjustments for contact grid */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--secondary-text);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .promo-icons {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0 0.5rem;
    }

    .logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .sub-nav {
        display: flex;
        gap: 1.5rem;
        padding: 0.8rem 1rem;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        white-space: nowrap;
        width: 100%;
        max-width: 100vw;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sub-nav::-webkit-scrollbar {
        display: none;
    }

    .sub-nav a {
        font-size: 0.75rem;
        flex-shrink: 0;
        display: inline-block;
    }

    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    .promo-icons {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1rem;
    }

    .brand-grid {
        gap: 2rem;
    }

    .brand-item {
        font-size: 1.2rem;
    }

    .products {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
    }

    .brand-story {
        padding: 4rem 1.5rem;
    }

    .story-content h2 {
        font-size: 1.4rem;
    }

    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .sub-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 1001;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    }

    .sub-nav.active {
        right: 0;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .sub-nav a {
        font-size: 1.1rem;
        width: 100%;
        padding: 5px 0;
    }

    .header-main {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.65rem;
        padding: 10px 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}
