html, body {
    margin: 0;
    height: 100%;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* Prevents unwanted horizontal scrolling */
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
/* BODY */

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding-top: 40px; 
    color: #ffffff;
    overflow-x: hidden;
}
.top-bar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
   position: relative;
    top: 15px; 
    left: 20px;
    z-index: 10000;
}
.user-menu a{
    margin-left:15px;
    text-decoration:none;
    color:white;
    font-size:14px;
}

.user-menu a:hover{
    color:#00ffd5;
}

.welcome-user{
    margin-left:15px;
    color:#00ffd5;
    font-weight:500;
}
.home-icon {
   position:relative;
    left:0;
    margin-right:10px;
     margin-bottom: 0px;  
    color: #1fffe0;   /* same color as your theme */
    font-size: 26px;
     align-items: center;
    justify-content: center;
    text-decoration: none;
    display: inline-flex;
  }
.home-icon i {
color:#1fffe0;
font-size:20px;
text-shadow:0 0 8px #1fffe0;
}
.home-icon:hover {
    transform: scale(1.15);
}

/* NAVBAR */
.nav-wrapper{
display:flex;
align-items:center;
justify-content:center;
padding:10px 20px;
background:#143a43;
}
.menu-toggle{
display:none;
font-size:22px;
color:white;
cursor:pointer;
}
.navbar {
  height: 60px;
  position: relative;   /* ✅ changed */
  width: 100%;
  background:#143a43;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  z-index: 1000;
}
.navbar{
    flex-wrap:wrap;
height:auto;
    width:100%;
    padding:10px;
}

.navbar ul{
    display:flex;
    justify-content:center;
    gap:15px;
    list-style:none;
}
.navbar a i {
    margin-right: 6px;
    font-size: 18px;
    color: #fff;
}

.navbar a {
    padding: 10px 15px;  
    color: #fff;
}
.brand {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo {
   font-size: 22px;
    font-weight: 600;
    color: #00ffd5;
    text-align: center;
    white-space: nowrap;
}
.nav-links li{
list-style:none;
}
.nav-links {
    list-style:none;
padding:0;
margin:0;
display:flex;
gap:25px;
align-items:center;
justify-content:center;
}
.nav-links a {
     display: inline-block;   /* IMPORTANT */
    padding: 10px 12px;       /* clickable area only around text */
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.nav-links a:hover {
   color: #00ffd5;
    text-shadow: 0 0 8px #00ffd5;
    background: rgba(0,255,213,0.15);
}

.admin {
    padding: 6px 14px;
    border: 1px solid #00ffd5;
    border-radius: 20px;
}
/* Background slider */
.bg-slider {
    margin-top: 80px; 
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 1s ease-in-out;
}
.slider-section {
    width: 100%;
    height: 400px; /* adjust as needed */
    position: relative;
    overflow: hidden;
}
/* HERO SECTION WITH BACKGROUND IMAGE */
.hero {
   position: relative;   /* IMPORTANT */
    min-height: 100vh;
    width: 100%;
    background: #05080a;
    overflow: hidden;
    margin-top:70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Fixed path: ../ moves out of 'css' folder into the root */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url("../images/bg/universe.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: slowZoom 45s ease-in-out infinite alternate;
}
.stars-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}
/* 3. Star Layer Styling (Small, Medium, Large) */
.stars, .stars2, .stars3 {
    opacity: 0.8;
    animation-name: moveStars, twinkling;
}

@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

@keyframes twinkling {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
/* Small Stars */
.stars {
    width: 2px; /* Made bolder */
    height: 2px;
    background: transparent;
    /* We use a large shadow spread to create "more" stars */
    box-shadow: 200px 300px #fff, 500px 100px #fff, 800px 700px #fff, 1200px 400px #fff, 1500px 900px #fff, 300px 800px #fff, 100px 100px #fff, 900px 100px #fff, 1800px 500px #fff, 450px 450px #fff;
    /* Tip: Repeat these coordinates or add more for density */
    animation: moveStars 60s linear infinite;
}
/* Medium Stars */
.stars2 {
    width: 3px; /* Bolder */
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 150px 450px #fff, 650px 250px #fff, 1050px 850px #fff, 1450px 150px #fff, 400px 600px #fff, 1200px 200px #00ffd5; /* Added some theme color stars */
    filter: blur(0.5px); /* Soft glow */
    animation: moveStars 100s linear infinite;
}
/* Large/Glowy Stars */
.stars3 {
    width: 4px; /* Boldest */
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 250px 150px #fff, 750px 750px #fff, 1250px 350px #fff, 500px 500px #00ffd5;
    filter: drop-shadow(0 0 8px #fff); /* Strong glow effect */
    animation: moveStars 140s linear infinite;
}
.stars::after, .stars2::after, .stars3::after {
    content: " ";
    position: absolute;
    top: 1000px; /* Positions the second set below the first for seamless looping */
    width: inherit;
    height: inherit;
    box-shadow: inherit;
}
/* 4. The Animation: Moving stars upward */
@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); } /* Moves the stars up */
}
.hero-content {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 10;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Logo Styling */
.hero-img{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}

.hero-img img{
    width:140px;
    display:block;
}

.hero-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.hero-tab-card {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 360px;
    height: 190px;

    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;

    text-decoration: none;   /* ðŸ”¥ REQUIRED for <a> */
    line-height: 1;

    color: #2fffdc;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);

    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);

    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-tab-card:hover {
    transform: scale(1.12);
    box-shadow: 0 0 40px rgba(47, 255, 220, 0.7);
}

/* Contact */

.contact-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-icons span {
    color: #ffffff;
}

.contact-icons .whatsapp i {
    color: #00ffd5 !important;
    font-size: 20px;
}
.contact-icons .whatsapp:hover i {
    color: #ffffff;
    transform: scale(1.15);
}
/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    margin-top: 40px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #f9f9f9;
    padding: 50px 20px 20px;
    color: #333;
    font-size: 14px;
}

.footer-container {
    width:100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #007bff;
}

.footer-col p {
    margin: 8px 0;
}

.footer-col i {
    margin-right: 8px;
    color: #007bff;
}
.social-icons {
    margin-top: 12px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #007bff;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 8px;
}

.social-icons a:hover {
    background: #0056b3;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 13px;
}

.footer-links a {
    color: #00ffd5;
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover {
    text-decoration: underline;
}
.site-footer {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    padding: 25px 10px 15px;
    text-align: center;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: #00ffd5;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.85;
}
/* INNER PAGE HERO */
.inner-hero {
    text-align: center;
    padding: 70px 20px;
}

.inner-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.inner-hero p {
    color: #d0d0d0;
    font-size: 16px;
    justify-content:center;
    text-align: center;
}

/* FORM CARD */
.form-container{
    max-width:500px;
    width:90%;
    margin:40px auto;
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.35);
}
h1 {
    text-align: center;
    margin-bottom: 5px;
}
p{
    text-align: center;
}

/* INPUTS */
form input {
    margin-bottom: 15px;
}

.form-container input,
.form-container textarea {
   
    padding: 14px;
    margin: 12px 0;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}

/* FILE INPUT */
.form-container input[type="file"] {
    background: #ffffff;
}

/* BUTTON */
.form-container button {
       padding: 14px;
    border-radius: 30px;
    border: none;
    background: #00ffd5;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
button {
    
    padding: 16px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #00ffd5, #00c9ff);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}


.form-container button:hover {
    background: #00cbb0;
}

/* BACK LINK */
.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #00ffd5;
    text-decoration: none;
    font-size: 14px;
}

/* Top Navigation */
.top-nav {
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding-left: 15px 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Home Icon */
.home-menu {
    position: relative;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

/* Home icon */
.side-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}
.home-wrapper {
  margin-bottom: 15px;
}
.sidebar {
  position: relative;
  padding-top: 20px;
  min-height: 100vh;
}
i, .icon {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.top-nav,
.side-menu {
  overflow: visible !important;
}
.category-box {
  /* display: none;*/
   margin-top: 40px;
  background: transparent;
  border-radius: 6px;
  padding: 8px 0;
  /*top:110%*/
}

.category-title {
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.1); /* Adds a subtle divider line */
    padding-bottom: 5px;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    margin-bottom: 6px;
}

.category-list li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    /*font-size: 14px;*/
     display: block;
}

.category-list li a:hover {
    color: #00ffd5;
}
.category-link {
    display: block;              /* ðŸ”¥ THIS MAKES IT VERTICAL */
    padding: 8px 5px;
    color: #ffffff !important;;
    text-decoration: none;
    font-size: 14px;
}

.category-link:hover {
    color: #00ffd5;
    background: rgba(0,255,213,0.15);
    border-radius: 6px;
}
/* Vertical menu box */
.menu-list {
    margin-top: 10px;
    background: rgba(15, 35, 45, 0.95);
    border-radius: 12px;
    width: 150px;

    /* KEY POINT 
    display: flex;
    flex-direction: column;

    display: none;*/
}
.menu-item {
  padding: 10px;
  color: #ffffff;
  cursor: pointer;
}
.menu-item:hover {
  background: rgba(255,255,255,0.1);
}
.menu-content {
    background: rgba(10, 30, 40, 0.95);
    border-radius: 12px;
    padding: 10px;
    width: 180px;
}

.menu-content a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
}

.menu-content a:hover {
    color: #00ffd5;
}
/* Show menu on hover
.home-menu:hover .menu-list {
    display: flex;
}
.home-menu:hover .category-box {
  display: block;
} */

.menu-title {
    color: #00ffd5;
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Vertical links */
.menu-list a {
    padding: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

.menu-list a:hover {
    background: rgba(0,255,213,0.15);
    color: #00ffd5;
}
.page-title {
    text-align: center;
    color: #ffffff;
    margin-top: 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 20px;                             /* Reduced gap to save space */
    padding: 20px;                         /* Reduced padding */
    max-width: 1000px;                     /* Limits overall width of the shop */
    margin: 0 auto;                        /* Centers the grid on the page */
}
.product-card {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    height:auto;
}

.product-card p {
    color: #ffffff;
    margin-top: 10px;
}

.inner-hero {
    text-align: center;
    padding: 40px 20px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-container input,
.form-container button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.category-list li {
    margin-bottom: 6px;
}

.category-list li a {
    color: #ffffff !important;     /* FORCE WHITE */
    text-decoration: none;
    display: block;                /* FORCE VERTICAL */
    font-size: 14px;
}

.category-list li a:hover {
    color: #00ffd5;
}
.inner-hero {
    text-align: center;
    padding: 40px 20px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-container input,
.form-container button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}
.event-menu {
    background: rgba(10, 30, 40, 0.95);
    padding: 12px;
    border-radius: 14px;
    width: 220px;
}

.event-menu a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 7px 0;
    font-size: 14px;
}

.event-menu a:hover {
    color: #00ffd5;
}

/* SPECIAL BUTTON */
.event-menu .highlight {
    margin-top: 8px;
    color: #00ffd5;
    font-weight: 600;
}
.event-container {
    text-align: center;
    margin-top: 80px;
}

.event-container h1 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}
.name-group {
    display: flex;
    gap: 15px;
}

.form-container input,
.form-container textarea,
.form-container button{
    width:100%;
    box-sizing:border-box;
    padding: 14px 18px;
    margin-bottom: 15px;
    border-radius: 25px;
    border: none;
    outline: none;
    font-size: 15px;
}

textarea {
    border-radius: 18px;
    resize: none;
}
label {
    font-size: 14px;
    margin-left: 10px;
    margin-bottom: 6px;
    display: block;
}
.clothing-section{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,#0b1f27,#163843);
    padding: 40px 15px;
}
.title{
    color:#fff;
    font-size:36px;
    margin-bottom:5px;
}
.file-input {
    background: #fff;
    padding: 10px;
}
.subtitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.8;
    color: #cfd8dc;
    margin-bottom: 30px;
}

.event-form-box {
    background: rgba(255,255,255,0.08);
    max-width: 100%;
    width: 100%;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
}

.event-form-box input,
.event-form-box textarea {
    width: 100%;
    border-radius: 25px;
    border: none;
    padding: 14px 18px;
    margin-bottom: 15px;
    outline: none;
}

.event-form-box textarea {
    height: 120px;
    resize: none;
}

.event-form-box button {
    width: 100%;
    padding: 14px;
    border-radius: 25px;
    border: none;
    background: #00ffd5;
    font-weight: 600;
    cursor: pointer;
}

.event-form-box button:hover {
    background: #00e6c0;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px;
}

.event-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.event-img:hover {
    transform: scale(1.05);
}

.places {
    text-align: center;
    padding: 40px;
    color: #fff;
}

.places ul {
    list-style: none;
    padding: 0;
}

.places li {
    font-size: 18px;
    margin: 10px 0;
}
.places {
    padding: 40px;
    text-align: center;
}

.place-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.place-card {
     position: relative;   /* REQUIRED for overlay */
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;   /* ðŸ”¥ KEY FIX */
}
/* Select button on card */
.select-btn {
     pointer-events: auto;
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 7px 14px;
    background: rgba(0, 255, 213, 0.95);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

.select-btn:hover {
    transform: scale(1.05);
}

/* Selected card effect */
.place-card.selected {
    background: rgba(0, 255, 213, 0.15);
    box-shadow: 0 0 25px rgba(0,255,213,0.45);
}

/* Selected section */
.selected-section {
    margin: 50px auto;
    max-width: 1100px;
    padding: 25px;
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
}

.selected-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00ffd5;
}

.selected-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.selected-card {
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
}

.selected-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.selected-card p {
    padding: 8px;
    font-size: 14px;
}

.place-card:hover {
    transform: scale(1.05);
}

.place-card img {
   width: 100%;
    height: auto;             /* ðŸ‘ˆ image decides height */
    object-fit: cover;
    display: block;
}

.place-card h3 {
    margin: 0;
    padding: 8px;    /* reduce bottom space */
    color: #ffffff;
    font-size: 17px;
    text-align: center;
    line-height: 1.2;
}

.book-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00ffd5, #00c9a7);
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 255, 213, 0.25);
}
.book-link {
    color: #ffffff !important;   /* force white */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.book-link:hover {
    color: #00ffd5;              /* brand hover color */
}

.book-btn:hover {
    background: linear-gradient(135deg, #00c9a7, #00ffd5);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 255, 213, 0.4);
}
.event-booking-section {
    margin: 60px auto;
    max-width: 700px;
    padding: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
}

.event-booking-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.event-booking-section input,
.event-booking-section select {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 30px;
    border: none;
    outline: none;
}

.event-booking-section button {
    width: 100%;
    padding: 14px;
    background: #00ffd5;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.footer-back-home {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.home-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00ffd5;
    color: #000 !important;   /* ðŸ”¥ FORCE arrow color */
    font-size: 26px;
    font-weight:700;
    text-decoration: none;
    z-index: 9999;
    position: relative;
    transition: 0.3s ease;
}

.home-arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0,255,213,0.6);
}
.clothing-box{
    width: 100%;
    max-width: 720px;   /* controls box size */
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Inputs */
.clothing-box input,
.clothing-box textarea{
    
     padding:14px 18px;
    border-radius:30px;
    border:none;
    margin-bottom:15px;
    outline:none;
}

.clothing-box textarea{
    height:120px;
    border-radius:18px;
    resize:none;
}
.clothing-box label{
    color:#fff;
    font-size:14px;
    margin:8px 0 6px;
    display:block;
}

/* First + Last name in one row */
.row{
    display:flex;
    gap:15px;
}

.row input{
 flex:1;
}

/* Button */
.submit-btn{
    width:100%;
    padding:14px;
    background:#00ffd1;
    border:none;
    border-radius:30px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

.submit-btn:hover{
    background:#00e6bc;
}
/* Centers the box on screen */
.page-center{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#0b1f27,#163843);
}

.page-container{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card{
    max-width: 100%;
    width: 100%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(0,255,213,0.25);
}
.center-wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-box{
max-width: 100%;
width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 35px rgba(0,255,213,0.4);
}
.custom-header{
    text-align: center;
    margin: 30px 0 20px;
}

.custom-header h1{
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 6px;
}

.custom-header p{
    color: #cfd8dc;
    font-size: 14px;
    opacity: 0.85;
}
/* Center page content */
.page-center{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 15px;
}

/* Glass form box */
.glass-box{
    width:650px;
    max-width:100%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:30px;
    box-shadow:0 0 35px rgba(0,255,213,0.35);
}

/* Header */
.custom-header{
    text-align:center;
    margin-bottom:25px;
}

.custom-header h1{
    color:#fff;
    font-size:34px;
    margin-bottom:6px;
}

.custom-header p{
    color:#cfd8dc;
    font-size:14px;
    opacity:.85;
}
.order-form-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05); /* Subtle transparent layer */
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    font-family: sans-serif;
}

.order-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 10px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

input::placeholder, textarea::placeholder {
    color: #ccc;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background-color: #1de9b6; /* Matching your teal button */
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #14a37f;
    transform: translateY(-2px);
}
.order-container{
    display:flex;
    max-width:900px;
    margin:40px auto;
    background:#fff;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
    border-radius:8px;
    overflow:hidden;
}

.product-preview{
    width:40%;
    background:#f4f4f4;
    padding:20px;
    text-align:center;
}

.product-preview img{
    width:100%;
    max-height:350px;
    object-fit:contain;
}

.order-form{
    width:60%;
    padding:25px;
}

.order-form h2{
    margin-bottom:15px;
}

.order-form label{
    display:block;
    margin-top:10px;
    font-weight:bold;
}

.order-form input,
.order-form select,
.order-form textarea{
    width:100%;
    padding:8px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:5px;
}

.size-box{
    display:flex;
    gap:15px;
    margin-top:8px;
}

.order-btn{
    margin-top:20px;
    background:#e91e63;
    color:white;
    padding:12px;
    border:none;
    width:100%;
    font-size:18px;
    border-radius:5px;
    cursor:pointer;
}

.order-btn:hover{
    background:#c2185b;
}
header {
  padding-top: 0;
}
.buy-now-btn {
    background-color: #ff4500; /* Bright orange/red */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

.buy-now-btn:hover {
    background-color: #e63e00;
}
/* Container for size pills */
.size-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* Hide the actual radio button */
.size-option input[type="radio"] {
    display: none;
}
.product-option{
    margin-top:10px;
}

.product-option label{
    font-size:14px;
    display:block;
    margin-top:8px;
    margin-bottom:5px;
}

.size-select{
    width:100%;
    padding:6px;
    border-radius:6px;
    border:1px solid #ccc;
}

.quantity-box{
    display:flex;
    align-items:center;
    gap:6px;
}

.qty-btn{
    width:28px;
    height:28px;
    border:none;
    background:#16d4d4;
    color:#000;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
}

.qty-input{
    width:40px;
    height:28px;
    text-align:center;
    border-radius:5px;
    border:1px solid #ccc;
}
/* Style the pill label */
.size-pill {
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 50%; /* Makes it circular */
    text-align: center;
    padding-top: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.size-pill small {
    font-size: 10px;
    color: #666;
}

/* Style for when a size is selected */
.size-option input[type="radio"]:checked + .size-pill {
    border-color: #673ab7; /* Matches your Pay button color */
    background-color: #f3e5f5;
    font-weight: bold;
}
.product-page { display: flex; gap: 40px; padding: 40px; background: #0f172a; color: white; border-radius: 20px; }
    
    /* Left Side: Images */
    .image-section { flex: 1; display: flex; flex-direction: column; gap: 15px; }
    .main-img { width: 100%; height: 500px; object-fit: cover; border-radius: 15px; border: 2px solid #334155; }
    .thumbnail-row { display: flex; gap: 10px; }
    .thumb { width: 80px; height: 80px; object-fit: cover; cursor: pointer; border-radius: 8px; opacity: 0.6; transition: 0.3s; }
    .thumb:hover { opacity: 1; border: 2px solid #22d3ee; }

    /* Right Side: Details */
    .details-section { flex: 1; }
    .price { font-size: 2rem; color: #94a3b8; margin: 10px 0; }
    
    .btn-group { display: flex; gap: 15px; margin-top: 30px; }
    .btn { flex: 1; padding: 18px; border: none; border-radius: 50px; font-weight: bold; cursor: pointer; font-size: 1rem; }
    .add-btn { background: #22d3ee; color: #000; }
    .buy-btn { background: #f59e0b; color: #000; }

.p-img {
    width: 100%;           /* Makes image fill the 1/3 column width */
    height: 250px;         /* Forces a specific height to keep them uniform */
    object-fit: contain;   /* Ensures the full design is visible without cropping */
    background: #f4f4f4;   /* Optional: light background if images are different sizes */
    border-radius: 10px;
    margin-bottom: 10px;
}

.p-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.p-img:hover {
    transform: scale(1.05);
}

/* Modal */
.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}

.img-modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* EVENTS PAGE BUTTON FIX */
.event-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 280px;
    margin-top: 20px; /* âœ… pushes buttons below navbar */
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.event-buttons .event-btn {
    display: block;
    align-items: center;
    justify-content: center;
    padding:10px 20px; 
    border-radius: 6px;
    cursor: pointer;
     font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none !important;
    color: #ebf0f2;
    background-color:#0f2027; 
    backdrop-filter: none;
    border: none; 
    transition: all 0.3s ease;
}

.event-buttons .event-btn:hover {
     background-color: #00e6d0;
    color: #000;
    transform: translateX(6px);
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.4);
}
.events-page,
.events-page body {
    min-height: 100vh;
}

.events-page .bg-slider {
    position: relative;
    
    width: 100%;
    height: 400px;   /* ðŸ”¥ REQUIRED */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
/* Optional: dark overlay for readability */
.bg-slider::after {
    content: "";
    position: relative;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}
.phone a{
    text-decoration:none;
    color:#25D366;
    font-weight:500;
}
/* MOBILE NAVBAR IMPROVEMENT */
.menu-toggle {
    display:none;
    font-size:28px;
    color:#00ffd5;
    cursor:pointer;
}
#menu{
    list-style:none;
    display:flex;
    gap:30px;
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle{
        display:none;
    }
    .menu{
        flex-direction:column;
    }
    .container{
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    .home-icon{
position:static;   /* removes absolute positioning */
margin-right:10px;
font-size:22px;
}
.navbar ul{
        display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-items: center;
    background:#0b2c30;
    width:100%;
    text-align:center;
    }
    .navbar ul li{
    padding:10px 0;
}
   .nav-wrapper{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
padding:8px 10px;
}
    .nav-links{
display:flex;
flex-direction:row;
gap:10px;
overflow-x:auto;
width:100%;
justify-content:center;
}
.nav-links::-webkit-scrollbar{
display:none;
}
    .nav-links.active {
       display:flex;
       right: 0;
    }

    .nav-links a {
    font-size:13px;
padding:6px 8px;
white-space:nowrap;
    }
}
@media (max-width: 768px) {

  .hero {
    min-height: 100vh;
    padding: 30px 15px;
    text-align: center;
  }

  .hero-tabs {
    flex-direction: column;
    gap: 20px;
  }

  .hero-tab-card {
    width: 100%;
    height: 120px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {

  .product-page {
      flex-direction: column;
      padding: 20px;
  }

  .image-section,
  .details-section {
      width: 100%;
  }

  .main-img {
      height: auto;
  }

  .thumbnail-row {
      justify-content: center;
  }

}
@media (max-width: 768px) {

  .order-container {
      flex-direction: column;
      margin: 20px;
  }

  .product-preview,
  .order-form {
      width: 100%;
  }

}
@media (max-width: 768px) {
  .footer-contact {
      flex-direction: column;
      gap: 15px;
  }
}
input, textarea, select, button {
    max-width: 100%;
}
@media (max-width: 480px){

    /*.menu{
        flex-direction:column;
    }*/
    .container{
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    .menu-toggle {
    display:none;
    }

    .nav-links{
       display:flex;
flex-direction:row;
justify-content:center;
align-items:center;
gap:10px;
width:100%;
position:static;
background:none;
    
        
    }

    .nav-links.active {
       display:flex;
    }

    .nav-links li a {
         font-size:13px;
padding:6px 8px;
white-space:nowrap;
    }
    .hero {
    min-height: 100vh;
    padding: 30px 15px;
    text-align: center;
  }

  .hero-tabs {
    flex-direction: column;
    gap: 20px;
  }

  .hero-tab-card {
    width: 100%;
    height: 120px;
    font-size: 22px;
  }
   .product-page {
      flex-direction: column;
      padding: 20px;
  }

  .image-section,
  .details-section {
      width: 100%;
  }

  .main-img {
      height: auto;
  }

  .thumbnail-row {
      justify-content: center;
  }
  .order-container {
      flex-direction: column;
      margin: 20px;
  }

  .product-preview,
  .order-form {
      width: 100%;
  }
  .footer-contact {
      flex-direction: column;
      gap: 15px;
  }
}
@media (max-width:768px){

#menu{
    position:static;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
}

#menu li{
    padding:5px;
}

#menu.active{
    left:0;
}

.menu-toggle{
    display:none;
}

}
/* Tablet */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Privacy Page */

.privacy-container{
max-width:900px;
margin:50px auto;
padding:40px;
background:#ffffff;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
line-height:1.8;
font-size:16px;
}

.privacy-container h2{
margin-top:30px;
color:#222;
font-size:24px;
border-bottom:2px solid #00ffd5;
padding-bottom:5px;
}

.privacy-container h3{
margin-top:18px;
color:#444;
font-size:18px;
}

.privacy-container p{
margin-top:10px;
color:#555;
}

@media (max-width:768px){

.privacy-container{
margin:20px;
padding:25px;
}

.privacy-container h2{
font-size:20px;
}

}
@media (max-width:768px){

.form-container{
    width:92%;
    padding:20px;
}

.inner-hero{
    padding:30px 15px;
}

.inner-hero h1{
    font-size:26px;
}

.inner-hero p{
    font-size:14px;
}

}
.cart-link{
position:relative;
}

.cart-badge{
background:#00ffd5;
color:#000;
font-size:12px;
padding:3px 7px;
border-radius:50%;
margin-left:5px;
font-weight:bold;
}
.disabled-link{
pointer-events:none;
opacity:0.4;
cursor:not-allowed;
}