@charset "UTF-8";
/* CSS Document */
/* ==============================
   TM TECHWORKS WEBSITE
============================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#FFFFFF;

    background:
        linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.35)),
        url("TMTechWorks Background.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* Navigation */

.site-header{
    position:absolute;
    top:0;
    right:0;
    width:100%;

    display:flex;
    justify-content:flex-end;
    align-items:center;

    padding:18px 55px;
    background:transparent;
    z-index:1000;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#FFFFFF;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;

    text-shadow:
        0 0 8px rgba(255,255,255,.65),
        0 0 18px rgba(86,192,235,.35);

    transition:.3s ease;
}

nav a:hover{
    color:#39FF6A;

    text-shadow:
        0 0 10px #39FF6A,
        0 0 22px rgba(57,255,106,.8);
}

/* ================================
Merch Store
=================================== */
.store-home-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

.store-home-link:hover {
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff,
                 0 0 20px #00eaff;
}

.store-title {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 35px;
    width: 100%;
}
.store-title h1 {
    font-size: 3.8rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 25px rgba(0,255,255,.45);
}

.store-title p {
    margin-top: 10px;
    color: #39FF6A;
    font-size: 1.3rem;
}
/* Looking Ahead Section */

.looking-ahead {
    padding: 100px 8%;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border-top: 2px solid rgba(0, 234, 255, 0.25);
}

.looking-container {
    max-width: 950px;
    margin: 0 auto;
}

.looking-ahead h2 {
    font-size: 3rem;
    color: #00d9ff;
    margin-bottom: 40px;
    text-shadow:
        0 0 12px #00d9ff,
        0 0 28px rgba(0, 217, 255, 0.45);
}

.looking-ahead p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 2;
    margin-bottom: 28px;
}

.looking-ahead strong {
    color: #00ff99;
}

.signature {
    margin-top: 70px;
    text-align: center;
}

.signature h3 {
    color: #00ff99;
    font-size: 2rem;
    margin-bottom: 10px;
}

.signature p {
    color: #00d9ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* ===========================
   STORE HERO SECTION
=========================== */

.store-hero {
    min-height: 90vh;
    padding: 170px 8% 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.store-divider {
    width: 100%;
    max-width: 650px;
    height: 3px;
    margin-top: 20px;
    background: linear-gradient(to right,
        #00eaff,
        #43ff9f,
        #00eaff);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0,255,170,.6);
}

.store-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.store-hero-content::before {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    margin: 0 auto 35px;
    border-radius: 50px;
    background: linear-gradient(to right, #00d9ff, #00ff99);
    box-shadow: 0 0 18px #00ff99;
}

.store-hero h1 {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow:
        0 0 15px #ffffff,
        0 0 35px rgba(0, 217, 255, 0.65);
}

.store-hero h2 {
    font-size: 2.1rem;
    color: #00d9ff;
    margin-bottom: 30px;
    text-shadow:
        0 0 10px #00d9ff,
        0 0 25px rgba(0, 217, 255, 0.7);
}

.store-hero p {
    max-width: 850px;
    margin: 0 auto 40px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00ff99, #00d9ff);
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.7);
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 25px #00ff99,
        0 0 45px #00d9ff;
}

/* ===================================
Changing Images
====================================== */

.merch-slider {
  width: 92%;
  height: 420px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.35);
  box-shadow: 0 0 35px rgba(0, 255, 170, 0.25);
  max-width: 1400px;
 align-self: flex-start;
}

.merch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merch-slide.active {
  opacity: 1;
}

.merch-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(0, 255, 170, 0.45));
}

.store-feature-area {
  width: 92%;
  max-width: 1400px;
  margin: 45px auto 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: stretch;
}

.store-categories {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 22px;
  padding: 25px 20px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
}

@media (max-width: 850px) {
  .store-feature-area {
    grid-template-columns: 1fr;
  }

  .store-categories {
    text-align: center;
  }

  .merch-slider {
    height: 400px;
  }
}

.store-categories h2 {
  color: #43ff9f;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.store-categories a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 16px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.15);
  font-weight: bold;
  transition: 0.3s ease;
}

.store-categories a:hover {
  color: #001b22;
  background: linear-gradient(90deg, #00eaff, #43ff9f);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.45);
  transform: translateX(6px);
}

.merch-slider {
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.18);
}

.merch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merch-slide.active {
  opacity: 1;
}

.merch-slide img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(0, 255, 170, 0.35));
}

.featured-products {
  width: 92%;
  max-width: 1400px;
  margin: 80px auto;
}

.featured-products h2 {
  color: #43ff9f;
  font-size: 2.3rem;
  margin-bottom: 30px;
  text-shadow: 0 0 18px rgba(67, 255, 159, 0.7);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 22px;
  padding: 22px;
  color: white;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(0, 255, 170, 0.35);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.stars {
  color: gold;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.stars span {
  color: #dffcff;
  margin-left: 8px;
}

.price {
  color: #43ff9f;
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-card button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 25px;
  border: 1px solid rgba(0, 255, 170, 0.35);
  background: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.product-card button:hover,
.cart-btn {
  background: linear-gradient(90deg, #00eaff, #43ff9f);
  color: #001b22;
}

.store-categories {
  position: sticky;
  top: 90px;
  align-self: start;
}

.store-feature-area {
  align-items: start;
}

.store-feature-area {
  width: 92%;
  max-width: 1400px;
  margin: 45px auto 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: start;
}

.store-categories {
  position: sticky;
  top: 100px;
  align-self: start;
}
.store-layout {
  width: 92%;
  max-width: 1400px;
  margin: 45px auto 80px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 35px;
  align-items: start;
}

.store-categories {
  position: sticky;
  top: 100px;
  align-self: start;
  height: auto;
  max-height: none;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
  z-index: 5;
}

.store-categories h2 {
  color: #43ff9f;
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 0 15px rgba(67, 255, 159, 0.8);
}

.store-categories a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  margin-bottom: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.15);
  font-weight: bold;
}

.store-main-content {
  min-width: 0;
}

.merch-slider {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.18);
}

/* ===========================
   FEATURED PRODUCTS GRID
   =========================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.product-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(0, 255, 170, 0.25);
    border-radius: 22px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,255,170,.15);
    transition: all .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0,255,170,.35);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    border-radius: 15px;
    background: rgba(255,255,255,.05);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

.stars span {
    color: #ddd;
    font-size: .9rem;
}

.price {
    color: #43ff9f;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 18px;
}

.product-card button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.product-card button:hover {
    transform: scale(1.03);
}

.cart-btn {
    background: linear-gradient(90deg,#00cfff,#38ff8b);
    color: #000;
}

.cart-btn:hover {
    box-shadow: 0 0 20px rgba(0,255,170,.6);
}

/* ==========================
   Shopping Cart
========================== */

.cart-icon{
    position: absolute;
    top:125px;
    right:40px;
    z-index:1000;
}

.cart-icon a{
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 20px;

    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;

    border:2px solid #2cff8f;
    border-radius:40px;

    background:rgba(0,0,0,.65);

    box-shadow:
        0 0 10px rgba(44,255,143,.4);

    transition:.3s;
}

.cart-icon a:hover{

    background:#2cff8f;
    color:#000;

    box-shadow:
        0 0 20px #2cff8f;
}

#cart-count{

    background:#2cff8f;
    color:#000;

    padding:2px 8px;

    border-radius:20px;

    font-size:14px;
}

/* Featured Products Title Divider */

.featured-products h2 {
    text-align: center;
    color: #43ff9f;
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 18px rgba(67,255,159,.8);
}

.featured-products h2::after {
    content: "";
    display: block;
    width: 320px;
    height: 3px;
    margin: 15px auto 35px;
    background: linear-gradient(90deg, #00eaff, #43ff9f, #00eaff);
    border-radius: 50px;
    box-shadow: 0 0 18px rgba(67,255,159,.7);
}

/* Product Card Hover */

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(67,255,159,.45);
}

.product-card img {
    transition: transform .35s ease;
}

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

/* Product Buttons */

.product-card button {
    width: 100%;
    padding: 13px;
    margin-top: 12px;
    border-radius: 28px;
    border: 1px solid rgba(67,255,159,.45);
    background: rgba(255,255,255,.06);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .3s ease;
}

.product-card button:hover {
    background: rgba(67,255,159,.15);
    box-shadow: 0 0 18px rgba(67,255,159,.45);
}

.product-card .cart-btn {
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
}

.product-card .cart-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(67,255,159,.75);
}

/* Product Badge */

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: bold;
    box-shadow: 0 0 18px rgba(67,255,159,.7);
	z-index: 10;
}

/* Smooth Scrolling */

html {
    scroll-behavior: smooth;
}

/* ==========================
   Newsletter Section
========================== */

.newsletter-section {
    width: 92%;
    max-width: 1200px;
    margin: 100px auto 80px;
}

.newsletter-box {
    text-align: center;
    padding: 50px 35px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(67, 255, 159, 0.35);
    box-shadow: 0 0 35px rgba(67, 255, 159, 0.22);
}

.newsletter-box h2 {
    color: #43ff9f;
    font-size: 2.4rem;
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(67, 255, 159, 0.8);
}

.newsletter-box p {
    color: #dffcff;
    max-width: 780px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 380px;
    padding: 15px 18px;
    border-radius: 30px;
    border: 1px solid rgba(67, 255, 159, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #b8fbea;
}

.newsletter-form button {
    padding: 15px 32px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(67, 255, 159, 0.45);
}

.newsletter-form button:hover {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(67, 255, 159, 0.8);
}

.newsletter-box small {
    color: #b8fbea;
    font-size: 0.85rem;
}

.subscribe-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.subscribe-popup-box {
    width: 90%;
    max-width: 520px;
    padding: 40px;
    text-align: center;
    border-radius: 25px;
    background: rgba(0, 0, 0, .9);
    border: 2px solid #43ff9f;
    box-shadow: 0 0 40px rgba(67,255,159,.75);
    color: white;
}

.subscribe-popup-box h2 {
    color: #43ff9f;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 18px rgba(67,255,159,.9);
}

.subscribe-popup-box p {
    line-height: 1.6;
    margin-bottom: 25px;
}

.subscribe-popup-box button {
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
}

/* ===========================
   PRODUCT CARD BUTTONS
   =========================== */

.product-card button {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    display: block;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* View Details Button */
.product-card button:first-of-type {
    background: transparent;
    color: #ffffff;
    border: 2px solid #2dff9d;
}

.product-card button:first-of-type:hover {
    background: rgba(45,255,157,0.15);
    box-shadow: 0 0 15px rgba(45,255,157,0.6);
    transform: translateY(-2px);
}

/* Add To Cart Button */
.product-card .cart-btn {
    background: linear-gradient(90deg, #00d4ff, #2dff9d);
    color: #081018;
    border: none;
    font-weight: bold;
}

.product-card .cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(45,255,157,0.8);
}

/* Make sure buttons never overflow */
.product-card {
    overflow: hidden;
}

/* ===== FORCE ADD TO CART BUTTON STYLE ===== */

.product-card .cart-btn{
    display:block !important;
    width:100% !important;

    padding:14px 20px !important;
    margin-top:12px !important;

    background:linear-gradient(90deg,#00d8ff,#31ff84) !important;
    color:#081018 !important;

    border:none !important;
    border-radius:30px !important;

    font-size:17px !important;
    font-weight:bold !important;

    cursor:pointer !important;

    text-align:center !important;

    box-sizing:border-box !important;
}

.product-card .cart-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 18px #31ff84;
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: 1px solid #43ff9f;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(67,255,159,.35);
}

.dot.active-dot {
    background: #43ff9f;
    box-shadow: 0 0 18px #43ff9f;
}

.store-categories a.current-category {
    background: linear-gradient(90deg, #00eaff, #43ff9f) !important;
    color: #001b22 !important;
    box-shadow: 0 0 20px rgba(67,255,159,.8) !important;
    border: 1px solid #43ff9f !important;
    transform: scale(1.04);
}

.store-categories a.current-category::before {
    content: "▶ ";
}

#cart-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,.85);
    color: #43ff9f;
    border: 1px solid #43ff9f;
    border-radius: 25px;
    padding: 14px 24px;
    box-shadow: 0 0 25px rgba(67,255,159,.7);
    font-weight: bold;
    display: none;
    z-index: 9999;
}


/* ==========================
   Mini Cart Popup
========================== */

.mini-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    justify-content: flex-end;
}

.mini-cart-box {
    width: 390px;
    max-width: 90%;
    height: 100%;
    background: rgba(5, 15, 20, 0.97);
    border-left: 2px solid #43ff9f;
    box-shadow: 0 0 35px rgba(67,255,159,.8);
    padding: 25px;
    color: white;
    overflow-y: auto;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-header h2 {
    color: #43ff9f;
    text-shadow: 0 0 15px #43ff9f;
}

#closeMiniCart {
    background: none;
    border: none;
    color: #43ff9f;
    font-size: 2rem;
    cursor: pointer;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    border-bottom: 1px solid rgba(67,255,159,.3);
    padding-bottom: 15px;
}

.mini-cart-item img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
}

.mini-cart-item h3 {
    font-size: 1rem;
    margin: 0 0 8px;
}

.mini-cart-summary {
    margin-top: 25px;
}

.mini-cart-btn,
.mini-cart-checkout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 30px;
    margin-top: 12px;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    cursor: pointer;
}

.mini-cart-btn {
    border: 1px solid #43ff9f;
    color: white;
    background: transparent;
}

.mini-cart-checkout {
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    border: none;
}

.mini-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.mini-qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
}

.mini-qty-controls span {
    font-weight: bold;
    color: #43ff9f;
}

.mini-remove-btn {
    margin-top: 8px;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid #43ff9f;
    background: transparent;
    color: white;
    cursor: pointer;
}

/* Mini Cart Quantity Buttons */

.mini-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.mini-qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
    font-weight: bold;
    cursor: pointer;
}

.mini-qty-controls span {
    color: #43ff9f;
    font-weight: bold;
}

.mini-remove-btn {
    margin-top: 8px;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid #43ff9f;
    background: transparent;
    color: white;
    cursor: pointer;
}

.mini-remove-btn:hover {
    background: rgba(67, 255, 159, 0.15);
}


/* ==========================
   Cart Page
========================== */

.cart-page {
    padding: 80px 8%;
    color: white;
}

.cart-header h1 {
    font-size: 3rem;
    color: #43ff9f;
    text-shadow: 0 0 20px #43ff9f;
    margin-bottom: 10px;
}

.cart-header p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.cart-items {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #43ff9f;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(67, 255, 159, 0.35);
    min-height: 250px;
}

.cart-summary {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid #43ff9f;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(67, 255, 159, 0.45);
}

.cart-summary h2 {
    color: #43ff9f;
    text-shadow: 0 0 15px #43ff9f;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 15px 0;
    font-size: 1rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #43ff9f;
}

.cart-summary hr {
    border: none;
    border-top: 1px solid rgba(67, 255, 159, 0.5);
    margin: 20px 0;
}

.continue-shopping-btn,
.checkout-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

.continue-shopping-btn {
    border: 1px solid #43ff9f;
    color: white;
}

.checkout-btn {
    background: linear-gradient(90deg, #00eaff, #43ff9f);
    color: #001b22;
}

@media (max-width: 800px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-header h1 {
        font-size: 2.3rem;
    }
}

.cart-page-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(67,255,159,.3);
}

.cart-page-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
}

.checkout-note {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #bfbfbf;
    line-height: 1.5;
}

.empty-cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.empty-cart-box {
  width: 90%;
  max-width: 480px;
  padding: 35px;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ff66;
  border-radius: 25px;
  box-shadow: 0 0 25px #00ff66;
  color: white;
}

.empty-cart-box h2 {
  color: #00ff66;
  font-size: 32px;
  text-shadow: 0 0 15px #00ff66;
}

.empty-cart-box p {
  margin: 20px 0;
  font-size: 18px;
}

.empty-cart-box button {
  padding: 16px 36px;
  border: none;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ff66;
  font-size: 17px;
}

.modal-close {
  display: block;
  margin-top: 20px;
  color: #00ff66;
  cursor: pointer;
}

.empty-cart-box h2 {
    text-shadow: 0 0 10px #00ff66,
                 0 0 20px #00ff66,
                 0 0 35px #00ff66;
}

.empty-cart-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ff66;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: white;
    text-shadow: 0 0 15px #00ff66;
}

.empty-cart-modal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.checkout-page {
  padding: 120px 7% 60px;
  color: white;
}

.checkout-page h1 {
  text-align: center;
  font-size: 48px;
  color: #00ff66;
  text-shadow: 0 0 15px #00ff66;
}

.checkout-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 30px;
  align-self: flex-start;
}

.checkout-box,
.checkout-summary {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #00ff66;
  border-radius: 25px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
}

.checkout-box h2,
.checkout-summary h2 {
  color: #00ff66;
  text-shadow: 0 0 10px #00ff66;
  margin-bottom: 20px;
}

.checkout-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #00ff66;
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

.checkout-box input::placeholder {
  color: #cccccc;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-options span {
  padding: 10px 15px;
  border: 1px solid #00ff66;
  border-radius: 20px;
  color: #00ff66;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.checkout-summary hr {
  border: none;
  border-top: 1px solid #00ff66;
  margin: 20px 0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.place-order-btn {
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border: none;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 20px #00ff66;
}

.place-order-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px #00ff66;
}

.secure-note {
  text-align: center;
  margin-top: 18px;
  color: #ddd;
}

@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

.checkout-summary {
    align-self: flex-start;
    top: 120px;
	margin-top: 0;
}

.checkout-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.checkout-popup-box {
  width: 90%;
  max-width: 480px;
  padding: 35px;
  text-align: center;
  background: rgba(0, 0, 0, 0.92);
  border: 2px solid #00ff66;
  border-radius: 25px;
  box-shadow: 0 0 25px #00ff66;
  color: white;
}

.checkout-popup-box h2 {
  color: #00ff66;
  font-size: 32px;
  text-shadow: 0 0 15px #00ff66;
}

.checkout-popup-box p {
  margin: 20px 0;
  font-size: 18px;
  color: white;
}

.checkout-popup-box button {
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ff66;
}

.checkout-popup-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ff66;
}

.order-success-page {
  min-height: 100vh;
  padding: 140px 7% 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.success-card {
  width: 90%;
  max-width: 700px;
  text-align: center;
  padding: 45px;
  background: rgba(0, 0, 0, 0.82);
  border: 2px solid #00ff66;
  border-radius: 30px;
  box-shadow: 0 0 30px #00ff66;
}

.success-check {
  width: 95px;
  height: 95px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 3px solid #00ff66;
  color: #00ff66;
  font-size: 60px;
  line-height: 90px;
  text-shadow: 0 0 20px #00ff66;
  box-shadow: 0 0 25px #00ff66;
  animation: successPulse 1.5s infinite;
}

.success-card h1 {
  color: #00ff66;
  font-size: 45px;
  text-shadow: 0 0 18px #00ff66;
}

.success-message,
.next-steps {
  font-size: 18px;
  margin: 20px 0;
}

.order-info {
  margin: 30px 0;
  display: grid;
  gap: 15px;
}

.order-info div {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #00ff66;
  border-radius: 15px;
  background: rgba(0, 255, 102, 0.08);
}

.order-info strong {
  color: #00ff66;
}

.success-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.success-buttons a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  background: #00ff66;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 18px #00ff66;
}

.success-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ff66;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px #00ff66;
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px #00ff66;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px #00ff66;
  }
}

/* ===========================
   Customer Reviews
=========================== */

.reviews-section {
    padding: 80px 8%;
    text-align: center;
}

.reviews-section h2 {
    font-size: 42px;
    color: #00ff66;
    text-shadow: 0 0 15px #00ff66;
    margin-bottom: 10px;
}

.reviews-subtitle {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    width: 320px;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #00ff66;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.45);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 255, 102, 0.8);
}

.stars {
    color: gold;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px gold;
}

.review-card p {
    color: white;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card h3 {
    color: #00ff66;
    font-size: 18px;
    text-shadow: 0 0 10px #00ff66;
}

/* ==========================
   Overall Customer Rating
========================== */

.reviews-rating {
    text-align: center;
    margin-bottom: 40px;
}

.overall-stars {
    font-size: 3rem;
    color: #FFD700;
    letter-spacing: 8px;
    text-shadow:
        0 0 8px #FFD700,
        0 0 15px #FFD700,
        0 0 25px #FFD700;
    margin-bottom: 10px;
}

.reviews-rating h3 {
    font-size: 2.4rem;
    color: #00ff88;
    margin: 10px 0;
    text-shadow:
        0 0 8px #00ff88,
        0 0 15px #00ff88;
}

.reviews-rating p {
    color: #dddddd;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Optional glowing divider */

.reviews-rating::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    margin: 30px auto 0;
    background: #00ff88;
    box-shadow:
        0 0 10px #00ff88,
        0 0 20px #00ff88;
}

.site-footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #00ff66;
  color: white;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #00ff66;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  text-shadow: 0 0 8px #00ff66;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
  text-shadow: 0 0 15px #00ff66;
}

.site-footer p {
  color: white;
  font-size: 14px;
}

/* ===========================
   SHIPPING POLICY PAGE
   Matches other neon blue pages
=========================== */

.policy-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.policy-card {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.policy-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.policy-card h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.policy-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-intro {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-divider {
    height: 2px;
    width: 100%;
    margin: 35px 0 25px;
    background: #00e5ff;
    box-shadow:
        0 0 10px #00e5ff,
        0 0 20px rgba(0, 229, 255, 0.6);
    border-radius: 50px;
}

.policy-card h2 {
    color: #39ff14;
    font-size: 1.45rem;
    margin-top: 25px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.policy-card p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.policy-card strong {
    color: #ffffff;
}

.policy-contact-box {
    margin-top: 35px;
    padding: 25px;
    border: 2px solid #00e5ff;
    border-radius: 15px;
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
    text-align: center;
}

.policy-contact-box h2 {
    border-left: none;
    padding-left: 0;
    text-align: center;
    color: #39ff14;
    font-size: 1.7rem;
}

.policy-contact-box p {
    text-align: center;
}

.policy-contact-box a {
    color: #39ff14;
    font-weight: bold;
    text-decoration: none;
}

.policy-contact-box a:hover {
    color: #00e5ff;
    text-shadow: 0 0 8px #00e5ff;
}

.return-store {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 15px 40px;
    }

    .policy-card {
        padding: 25px;
    }

    .policy-icon {
        font-size: 3rem;
    }

    .policy-card h1 {
        font-size: 2.2rem;
    }

    .policy-card h2 {
        font-size: 1.2rem;
    }

    .policy-card p,
    .policy-intro {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ================================
   Return to Store Section
================================ */

.return-store {
    width: 100%;
    text-align: center;
    margin: 60px auto;
    padding: 30px 20px;
}

.return-store h3 {
    color: #00ff66;
    font-size: 2rem;
    margin-bottom: 12px;
    text-shadow: 0 0 12px #00ff66;
}

.return-store p {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.return-store-btn {
    display: inline-block;
    justify-content: center;
    align-items: center;
	margin: 0 auto;

    min-width: 260px;
    padding: 16px 38px;

    background: linear-gradient(90deg, #00ff66, #00d4ff);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;

    border: 2px solid #00ff66;
    border-radius: 50px;

    box-shadow: 0 0 20px rgba(0,255,100,0.6);

    transition: all .3s ease;
}

.return-store-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(90deg, #00d4ff, #00ff66);
    box-shadow: 0 0 35px rgba(0,255,100,.9);
}

.return-store-btn:active {
    transform: scale(.98);
}

.return-policy {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: radial-gradient(circle at top, #10243a, #05080d 70%);
  color: #e8f7ff;
}

.policy-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px;
  background: rgba(5, 12, 20, 0.9);
  border: 2px solid #00bfff;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.45);
}

.policy-box h1 {
  text-align: center;
  color: #00bfff;
  font-size: 2.4rem;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #00bfff;
}

.policy-box h2 {
  color: #39ff14;
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.policy-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d9f4ff;
}

.policy-box strong {
  color: #ffffff;
}

@media (max-width: 600px) {
  .return-policy {
    padding-top: 100px;
  }

  .policy-box {
    padding: 22px;
  }

  .policy-box h1 {
    font-size: 2rem;
  }
}


/* ===========================
   RETURN POLICY PAGE
=========================== */

.return-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
}

.policy-box {
    width: 100%;
    max-width: 950px;
    padding: 45px;
    background: rgba(8, 15, 28, 0.55);
    border: 3px solid #00d9ff;
    border-radius: 20px;
    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.9),
        0 0 30px rgba(0, 217, 255, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.policy-box h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #00d9ff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px #00d9ff,
        0 0 20px rgba(0, 217, 255, 0.8);
}

.policy-box h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: #39ff14;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}

.policy-box p {
    margin-bottom: 18px;
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
}

.policy-box strong {
    color: #ffffff;
}

.policy-box a {
    color: #00d9ff;
    text-decoration: none;
    transition: 0.3s ease;
}

.policy-box a:hover {
    color: #39ff14;
    text-shadow: 0 0 8px #39ff14;
}

.policy-box hr {
    border: none;
    height: 1px;
    background: rgba(0, 217, 255, 0.45);
    margin: 30px 0;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .return-policy {
        padding: 100px 15px 40px;
    }

    .policy-box {
        padding: 25px;
        background: rgba(8, 15, 28, 0.65);
    }

    .policy-box h1 {
        font-size: 2rem;
    }

    .policy-box h2 {
        font-size: 1.2rem;
    }

    .policy-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
/* ===========================
   PRIVACY POLICY PAGE
=========================== */

.privacy-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.privacy-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.privacy-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.privacy-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.privacy-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 15px 40px;
    }

    .privacy-box {
        padding: 25px;
    }

    .privacy-icon {
        font-size: 3rem;
    }

    .privacy-box h1 {
        font-size: 2.2rem;
    }

    .privacy-box h2 {
        font-size: 1.2rem;
    }

    .privacy-box p,
    .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   TERMS & CONDITIONS PAGE
=========================== */

.terms-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.terms-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.terms-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.terms-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-box strong {
    color: #ffffff;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .terms-policy {
        padding: 100px 15px 40px;
    }

    .terms-box {
        padding: 25px;
    }

    .terms-icon {
        font-size: 3rem;
    }

    .terms-box h1 {
        font-size: 2.2rem;
    }

    .terms-box h2 {
        font-size: 1.2rem;
    }

    .terms-box p,
    .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   TERMS & CONDITIONS PAGE
=========================== */

.terms-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.terms-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.terms-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.terms-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.terms-box .last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.terms-box .intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.terms-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.terms-box strong {
    color: #ffffff;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .terms-policy {
        padding: 100px 15px 40px;
    }

    .terms-box {
        padding: 25px;
    }

    .terms-icon {
        font-size: 3rem;
    }

    .terms-box h1 {
        font-size: 2.2rem;
    }

    .terms-box h2 {
        font-size: 1.2rem;
    }

    .terms-box p,
    .terms-box .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   FAQ PAGE
=========================== */

.faq-policy {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.faq-box {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.faq-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.faq-box h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.faq-box .last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.faq-box .intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-box h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.faq-box p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.faq-box strong {
    color: #ffffff;
}

.return-button-area {
    margin-top: 40px;
    text-align: center;
}

.return-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: all 0.3s ease;
}

.return-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .faq-policy {
        padding: 100px 15px 40px;
    }

    .faq-box {
        padding: 25px;
    }

    .faq-icon {
        font-size: 3rem;
    }

    .faq-box h1 {
        font-size: 2.2rem;
    }

    .faq-box h2 {
        font-size: 1.2rem;
    }

    .faq-box p,
    .faq-box .intro-text {
        font-size: 0.95rem;
    }

    .return-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   FAQ PAGE
=========================== */

.faq-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.faq-container {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.faq-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.faq-container h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00e5ff;
}

.faq-container .last-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
}

.faq-container .intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-container h2 {
    color: #39ff14;
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 5px solid #39ff14;
    padding-left: 12px;
    text-align: left;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.faq-container p {
    color: #e8f6ff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.faq-container strong {
    color: #ffffff;
}

.faq-button-area {
    margin-top: 40px;
    text-align: center;
}

.faq-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    transition: 0.3s ease;
}

.faq-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .faq-page {
        padding: 100px 15px 40px;
    }

    .faq-container {
        padding: 25px;
    }

    .faq-icon {
        font-size: 3rem;
    }

    .faq-container h1 {
        font-size: 2.2rem;
    }

    .faq-container h2 {
        font-size: 1.2rem;
    }

    .faq-container p,
    .faq-container .intro-text {
        font-size: 0.95rem;
    }

    .faq-store-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.contact-container {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.contact-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
}

.contact-container h1 {
    text-align: center;
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 15px;
    text-shadow: 0 0 12px #00e5ff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-info {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 35px;
}

.contact-info p {
    margin: 10px 0;
    color: #ffffff;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #39ff14;
    font-weight: bold;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #00e5ff;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #39ff14;
    box-shadow: 0 0 15px rgba(57,255,20,0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-submit-btn {
    margin-top: 30px;
    padding: 16px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,229,255,0.45);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57,255,20,0.7);
}

.contact-note {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,229,255,0.3);
    text-align: center;
}

.contact-note h2 {
    color: #39ff14;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(57,255,20,0.6);
}

.contact-note p {
    color: #e8f6ff;
    line-height: 1.8;
}

.contact-button-area {
    margin-top: 40px;
    text-align: center;
}

.contact-store-btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,229,255,0.45);
}

.contact-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(57,255,20,0.7);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .contact-page {
        padding: 100px 15px 40px;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-icon {
        font-size: 3rem;
    }

    .contact-container h1 {
        font-size: 2.2rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .contact-submit-btn,
    .contact-store-btn {
        width: 100%;
        max-width: 300px;
    }

}

/* ===========================
   CONTACT PAGE FIX
=========================== */

.contact-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e8f6ff;
}

.contact-container {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    background: rgba(8, 15, 28, 0.92);
    border: 3px solid #00e5ff;
    border-radius: 18px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.6),
        0 0 35px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(6px);
}

.contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0;
}

.contact-form label {
    display: block;
    color: #39ff14;
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px solid #00e5ff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-submit-btn {
    margin: 25px auto 0;
    padding: 15px 42px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #39ff14, #00e5ff);
    color: #06131f;
    font-weight: bold;
    cursor: pointer;
}

/* Category page layout */
.store-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 45px;
    align-items: start;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 30px;
}

/* Left category box */
.store-categories {
    margin-top: 0;
}

/* Right product area */
.featured-products {
    margin-top: 0;
    padding-top: 0;
    text-align: center;
}

/* T-Shirts title */
.featured-products h2 {
    margin-top: 0;
    margin-bottom: 35px;
}

/* Product cards stay on the right side */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 35px;
    align-items: start;
}

.product-image-swap {
    position: relative;
    width: 100%;
    height: 230px;
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
}

.product-image-swap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: opacity 0.35s ease;
}

.front-image {
    opacity: 1;
}

.back-image {
    opacity: 0;
}

.product-image-swap:hover .front-image {
    opacity: 0;
}

.product-image-swap:hover .back-image {
    opacity: 1;
}

/* ===========================
   Store Search
=========================== */

.store-search {
    margin-bottom: 25px;
}

.store-search h3 {
    color: #32ff7e;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(50,255,126,0.8);
}

.store-search input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #32ff7e;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(50,255,126,0.25);
}

.store-search input::placeholder {
    color: #9fdfff;
}

.store-search input:focus {
    border-color: #00ffff;
    box-shadow:
        0 0 10px #00ffff,
        0 0 20px #32ff7e;
}

.techy-assistant {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
}

#techyToggle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #00ff88;
  background: #050505;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 0 20px #00ff88;
}

.techy-chat {
  display: none;
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 310px;
  background: rgba(0, 0, 0, 0.92);
  border: 2px solid #00ff88;
  border-radius: 18px;
  box-shadow: 0 0 25px #00ff88;
  overflow: hidden;
}

.techy-chat.show {
  display: block;
}

.techy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,255,136,0.15);
  padding: 12px 15px;
  color: #00ff88;
}

.techy-header h3 {
  margin: 0;
}

#techyClose {
  background: none;
  border: none;
  color: #00ff88;
  font-size: 1.5rem;
  cursor: pointer;
}

.techy-body {
  padding: 15px;
  color: white;
}

.techy-body button {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #00ffff;
  background: rgba(0,255,255,0.1);
  color: white;
  cursor: pointer;
}

.techy-body button:hover {
  background: #00ff88;
  color: black;
}

.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
}

.product-gallery,
.product-info{
	position: relative;
}
.product-tabs {
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid #00ff88;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0,255,136,0.35);
    padding: 25px;
}

#mainProductImage {
    width: 100%;
    border-radius: 18px;
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.thumbnail-row img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 2px solid #00ffff;
    border-radius: 12px;
    cursor: pointer;
}

.product-info h1 {
    color: white;
    font-size: 2.5rem;
}

.product-badge {
    background: #00ff88;
    color: black;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
	position: absolute
}

.product-rating {
    color: gold;
    font-size: 1.3rem;
}

.product-rating span {
    color: white;
    font-size: 1rem;
}

.product-price {
    color: #00ff88;
    font-size: 2rem;
    font-weight: bold;
}

.product-description {
    color: white;
    line-height: 1.6;
}

.size-buttons button {
    padding: 12px 18px;
    margin: 5px;
    border: 1px solid #00ffff;
    background: rgba(0,255,255,0.1);
    color: white;
    border-radius: 12px;
    cursor: pointer;
}

.size-buttons button:hover,
.size-buttons button.selected {
    background: #00ff88;
    color: black;
}

.quantity-box input {
    width: 80px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #00ff88;
    background: black;
    color: white;
}

.buy-now-btn,
.cart-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border-radius: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.cart-btn {
    background: #00ff88;
    color: black;
}

.buy-now-btn {
    background: #00ffff;
    color: black;
}

.product-tabs {
    max-width: 1200px;
    margin: 30px auto;
}

.tab-btn {
    padding: 12px 18px;
    border: 1px solid #00ffff;
    background: rgba(0,255,255,0.1);
    color: white;
    border-radius: 12px;
    cursor: pointer;
}

.tab-btn.active {
    background: #00ff88;
    color: black;
}

.tab-content {
    display: none;
    color: white;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

@media (max-width: 900px) {
    .product-page {
        grid-template-columns: 1fr;
    }
}

#cartMessage {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 200, 0.15);
    color: #00fff7;
    border: 2px solid #00ff99;
    box-shadow: 0 0 15px #00fff7, 0 0 25px #00ff99;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, top 0.4s ease;
    text-align: center;
}

#cartMessage.show {
    opacity: 1;
    top: 95px;
}

.cart-item-size {
    color: #00ff99;
    font-size: 16px;
    font-weight: bold;
    margin: 4px 0 8px;
    text-shadow: 0 0 8px #00ff99;
}

.color-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-btn {
    background: rgba(0, 255, 180, 0.12);
    color: #00fff7;
    border: 2px solid #00ff99;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
}

.color-btn.selected {
    background: #00ff99;
    color: #001f1a;
    box-shadow: 0 0 18px #00ff99, 0 0 30px #00fff7;
}

.product-page {
    display: grid;
    grid-template-columns: 360px minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
}

.product-gallery {
    width: 360px !important;
    max-width: 100% !important;
	border-radius: 25px;
}

.product-gallery #mainProductImage {
    display: block;
    width: 360px !important;
    max-width: 100% !important;
    height: 360px !important;
    object-fit: cover!important;
    margin: 0 auto 20px;
    border-radius: 18px;
}

.product-gallery .thumbnail-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.product-thumbnail {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain;
    border-radius: 12px;
    cursor: pointer;
}