/* ===== TOP OFFER ===== */

.top-offer {
  background: #f4f4f4;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
}

.top-offer span {
  color: var(--accent-red);
  font-weight: 600;
}

/* ===== TICKER ===== */

.ticker {
  background: var(--primary-black);
  color: #fff;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  padding: 12px 0;
  animation: scrollTicker 25s linear infinite;
}

.ticker-track span {
  margin-right: 120px;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== LOGO ===== */

.logo a {
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--soft-black);
  transition: 0.3s;
}

.logo a:hover {
  color: var(--accent-red);
}

/* ===== NAV LINKS ===== */

.nav-links a {
  text-decoration: none;
  color: var(--soft-black);
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent-red);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== ICONS ===== */

.nav-icons svg {
  stroke: var(--soft-black);
  transition: 0.3s;
}

.nav-icons a:hover svg {
  stroke: var(--accent-red);
  transform: scale(1.05);
}

/* ===== BUTTON ===== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-black);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent-red);
}

/* ===== FEATURED SECTION ===== */

.featured {
  background: #fafafa;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
}

.section-header p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* ===== PRODUCT GRID ===== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ===== PRODUCT CARD ===== */

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  transition: 0.35s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* PRODUCT IMAGE */

.product-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

/* PRODUCT NAME */

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* PRICE */

.price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

/* BUTTON */

.btn {
  display: inline-block;
  padding: 10px 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #d10000;
}

/* ===== COLLECTION SECTION ===== */

.collections {
  background: #fff;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.4s ease;
}

.collection-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.4s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

/* Dark overlay */
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.collection-overlay h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Coming Soon Card */

.coming-soon {
  cursor: not-allowed;
  opacity: 0.9;
}

.badge {
  margin-top: 10px;
  background: #d10000;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ===== FOUNDER SECTION ===== */

.founder {
  background: #f5f5f5;
  padding: 140px 0;
  text-align: center;
}

.founder-wrapper {
  max-width: 800px;
  margin: auto;
}

.founder-name {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #111;
}

.founder-name::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d10000;
  margin: 20px auto 0;
}

.founder-title {
  font-size: 22px;
  font-weight: 500;
  color: #555;
  margin-bottom: 25px;
}

.founder-title span {
  font-weight: 600;
  color: #000;
}

.founder-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* ================= MADE IN INDIA SECTION ================= */

.made-india {
  background: #f8f8f8;
  padding: 140px 0;
  text-align: center;
}

.made-wrapper {
  max-width: 1000px;
  margin: auto;
}

.made-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}

.made-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  margin-bottom: 60px;
}

.india-flag img {
  width: 160px;
  margin-bottom: 70px;
}

/* FEATURES GRID */

.made-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.made-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.made-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* ICON STYLE */

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff8c00;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ================= PREMIUM FOOTER ================= */

.premium-footer {
  background: #000;
  color: #fff;
  padding: 120px 0 50px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

/* LEFT LINKS */

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

/* NEWSLETTER */

.footer-newsletter h2 {
  font-size: 52px;
  margin-bottom: 40px;
}

.newsletter-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-box input {
  width: 420px;
  padding: 20px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #2a2a2a;
  color: #fff;
}

.newsletter-box input::placeholder {
  color: #888;
}

.newsletter-box button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-box button:hover {
  color: #d10000;
}

/* BOTTOM ROW */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
  padding-top: 30px;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons i {
  font-size: 18px;
  color: #bbb;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #fff;
}

/* ================= PREMIUM PRODUCT PAGE ================= */

.product-page {
  padding: 140px 0;
  background: #f8f8f8;
}

.product-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 120px;
  align-items: center;
}

/* ===== LEFT IMAGE SIDE ===== */

.product-gallery {
  position: relative;
}

.main-image {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.main-image img {
  width: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.main-image img:hover {
  transform: scale(1.04);
}

.thumbnail-images {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.thumbnail-images img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.thumbnail-images img:hover {
  border-color: #000;
  transform: translateY(-5px);
}

/* ===== RIGHT SIDE ===== */

.product-info h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.price {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 45px;
}

/* SIZE SELECTOR */

.option-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
}

.sizes {
  display: flex;
  gap: 15px;
}

.sizes button {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
}

.sizes button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-3px);
}

/* QUANTITY */

.quantity input {
  width: 120px;
  height: 45px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

/* ADD TO CART */

.add-to-cart {
  margin-top: 40px;
  width: 100%;
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.add-to-cart:hover {
  background: #d10000;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ================= WISHLIST PAGE ================= */

.wishlist-page {
  padding: 140px 0;
}

.wishlist-page h1 {
  font-size: 42px;
  margin-bottom: 60px;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.wishlist-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  text-align: center;
}

.wishlist-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.wishlist-card h3 {
  margin-bottom: 10px;
}

.remove-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.remove-btn:hover {
  background: #d10000;
}

/* Wishlist Button */

.wishlist-btn {
  margin-top: 15px;
  width: 100%;
  padding: 15px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.wishlist-btn:hover {
  background: #000;
  color: #fff;
}

/* ================= SEARCH PAGE ================= */

.search-page {
  padding: 140px 0;
}

.search-page h1 {
  font-size: 42px;
  margin-bottom: 40px;
}

.search-form {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.search-form input {
  flex: 1;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.search-form button {
  padding: 15px 30px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.search-form button:hover {
  background: #d10000;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.search-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.search-card:hover {
  transform: translateY(-10px);
}

.search-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.search-card h3 {
  margin-bottom: 10px;
}

.search-card a {
  text-decoration: none;
  color: #000;
}

/* ================= ACCOUNT PANEL ================= */

.account-section {
  padding: 140px 0;
  background: #f8f8f8;
}

.account-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
}

/* SIDEBAR */

.account-sidebar {
  background: #000;
  padding: 40px 30px;
  border-radius: 20px;
  color: #fff;
  height: fit-content;
}

.account-sidebar h3 {
  margin-bottom: 30px;
}

.account-sidebar ul {
  list-style: none;
  padding: 0;
}

.account-sidebar li {
  margin-bottom: 20px;
}

.account-sidebar a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.account-sidebar a:hover,
.account-sidebar a.active {
  color: #fff;
}

/* CONTENT */

.account-content h1 {
  font-size: 40px;
  margin-bottom: 40px;
}

.account-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.account-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.account-card:hover {
  transform: translateY(-8px);
}

.account-card h3 {
  margin-bottom: 15px;
}

.account-card p {
  font-size: 28px;
  font-weight: 600;
}

/* ================= AUTH ================= */

.auth-section {
  padding: 140px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-box {
  width: 400px;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.auth-box h1 {
  margin-bottom: 30px;
}

.auth-box form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-box input {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.auth-box button {
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.auth-box button:hover {
  background: #d10000;
}

/* ORDERS */

.orders-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.order-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.order-row.header {
  font-weight: 600;
  background: #f5f5f5;
}

.status.delivered {
  color: green;
}

.status.pending {
  color: orange;
}

/* ADDRESS */

.address-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.add-address-btn {
  padding: 15px 25px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* PROFILE */

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.profile-form input {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.profile-form button {
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
}

/* ================= ADMIN PANEL ================= */

.admin-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f5f5f5;
}

.admin-sidebar {
  background: #000;
  color: #fff;
  padding: 40px 25px;
}

.admin-sidebar h2 {
  margin-bottom: 40px;
}

.admin-sidebar ul {
  list-style: none;
  padding: 0;
}

.admin-sidebar li {
  margin-bottom: 20px;
}

.admin-sidebar a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.admin-sidebar a:hover {
  color: #fff;
}

.admin-content {
  padding: 60px;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.admin-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  text-align: center;
}

.admin-table {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

.admin-table th,
.admin-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.admin-form input,
.admin-form textarea {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.admin-form button,
.admin-btn {
  padding: 15px 25px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}

/* ================= CART ================= */

.cart-section {
  padding: 140px 0;
  background: #f8f8f8;
}

.cart-container {
  max-width: 1300px;
  margin: auto;
}

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

/* ITEMS */

.cart-item {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.cart-item img {
  width: 150px;
  border-radius: 15px;
}

.cart-details h3 {
  margin-bottom: 10px;
}

.cart-qty {
  margin: 15px 0;
}

.cart-qty input {
  width: 60px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.remove-btn {
  color: red;
  font-size: 14px;
  text-decoration: none;
}

/* SUMMARY */

.cart-summary {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: fit-content;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.summary-total {
  font-size: 20px;
  font-weight: 600;
}

.checkout-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
  padding: 18px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #d10000;
}

/* ================= CHECKOUT ================= */

.checkout-section {
  padding: 140px 0;
  background: #f8f8f8;
}

.checkout-container {
  max-width: 1300px;
  margin: auto;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.checkout-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.checkout-box h2 {
  margin-bottom: 30px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-form input,
.checkout-form select {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.checkout-btn {
  margin-top: 30px;
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  display: block;
  text-decoration: none;
}

.checkout-btn:hover {
  background: #d10000;
}

.summary-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.success-box {
  text-align: center;
  padding: 120px 20px;
}

.success-box h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* ================= COLLECTION PAGE ================= */

.collection-section {
  padding: 140px 0;
  background: #f8f8f8;
}

.collection-container {
  max-width: 1300px;
  margin: auto;
}

.collection-header {
  text-align: center;
  margin-bottom: 60px;
}

.collection-header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.collection-product {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.collection-product:hover {
  transform: translateY(-8px);
}

.collection-product img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.collection-product h3 {
  margin-bottom: 10px;
}

.collection-product p {
  font-weight: 600;
  margin-bottom: 15px;
}

.collection-product a {
  display: block;
  text-align: center;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}
  
.coming-soon {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}