/* ===== GLOBAL START ===== */

/*maintain Navbar and content margin */
/* ===== GLOBAL START ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 70px;
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #111;
  line-height: 1.6;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  display: block;
  transition: 0.3s;
}

.logo:hover {
  opacity: 1;
}

/* ===== GLOBAL END ===== */


/* ===== INDEX PAGE START ===== */

/* ===== PREMIUM NAVBAR START ===== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background: #111;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart {
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

/*CART COUNT */
#cart-count {
  font-size: 12px;
  margin-left: 5px;
}

/*MOBILE MENU*/
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/*MOBILE */
@media(max-width:768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links a {
    margin-bottom: 15px;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== PREMIUM NAVBAR END ===== */

/* HERO */
.hero {
  margin-top: 0;
  height: calc(100vh - 70px);
  position: relative;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  max-width: 500px;
}

.hero h1 {
  font-family: 'Noto Serif JP';
  font-size: 42px;
  font-weight: 300;
}

.hero p {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 12px;
  color: #111;
}

/* SECTION */
.section {
  padding: 10px 40px;
}

.section h2 {
  font-family: 'Noto Serif JP';
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 5px;
}

.section p {
  max-width: 600px;
  font-size: 14px;
  color: #444;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}

.img-zoom-container {
  overflow: hidden;
  position: relative;
  background: #f9f9f9;
}

.grid .img-zoom-container img,
.collection-item .img-zoom-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.grid .img-zoom-container:hover img,
.collection-item .img-zoom-container:hover img {
  transform: scale(1.08);
}

/* PRODUCTS */
.products {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  padding: 10px 0;
}

.product {
  width: 220px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  border-radius: 8px;
  padding: 10px;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #fff;
}

.product .img-zoom-container {
  border-radius: 6px;
  margin-bottom: 5px;
}

.product img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product:hover img {
  transform: scale(1.03);
}

.product h3 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.product p {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

.cart-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-size: 17px;
  z-index: 10;
  padding: 0;
}

.cart-icon:hover {
  background: #111;
  color: #fff;
  transform: scale(1.1);
}

/* FULL IMAGE SECTION 
.full-image {
  height: 400px;
  background: url('../Images/Products/Cancer_B1.jpeg') center/cover no-repeat;
  margin: 10px 0;
}*/

/* FOOTER */
.footer {
  padding: 60px;
  font-size: 12px;
  color: #666;
}

/* ===== INDEX PAGE END ===== */

/* ===== PRODUCT PAGE START===== */

/* NAVBAR SPACE FIX */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 40px;
}

/* PRODUCT LAYOUT */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* IMAGE */
.product-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* TEXT */
.product-info h1 {
  font-family: 'Noto Serif JP';
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

.description {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* DETAILS */
.details {
  margin-bottom: 40px;
}

.details p {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 20px;
}

button {
  padding: 12px 26px;
  border: 1px solid #111;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s;
}

button:hover {
  background: #111;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 400px;
  }
}

/* ===== ZOOM EFFECT START ===== */

.zoom-container {
  overflow: hidden;
  width: 100%;
  height: 600px;
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.zoom-container:hover .zoom-image {
  transform: scale(1.2);
}

/* MOBILE FIX */
@media(max-width:768px) {
  .zoom-container:hover .zoom-image {
    transform: scale(1);
    /* disable zoom on mobile */
  }
}

/* ===== ZOOM EFFECT END ===== */

/* ===== IMAGE GALLERY START ===== */

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
  border: 1px solid #eee;
}

.thumbnails img:hover {
  opacity: 1;
  border: 1px solid #111;
}

/* ===== IMAGE GALLERY END ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px;
}

.product-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ZOOM EFFECT */
.product-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY TEXT */
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  display: block !important;
}

.buttons {
  display: flex !important;
  gap: 15px;
  margin-top: 30px;
}

.buttons button {
  display: inline-block !important;
  padding: 12px 25px;
  border: 1px solid black;
  background: white;
  cursor: pointer;
}

/* ===== PRODUCT PAGE MODAL START ===== */

.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.product-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
}

.modal-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.modal-info {
  padding: 40px;
}

.modal-info h2 {
  font-family: 'Noto Serif JP';
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
}

.modal-info .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.modal-info .description {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
}

.modal-buttons button {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
}

.modal-buttons button:first-child {
  background: #111;
  color: #fff;
}

.modal-buttons button:hover {
  background: #111;
  color: #fff;
}

.modal-buttons button:first-child:hover {
  background: #f0f0f0;
  color: #111;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

.close-modal:hover {
  background: #666;
}

@media(max-width: 768px) {
  .modal-content {
    max-width: 90%;
  }

  .modal-info {
    padding: 25px;
  }

  .modal-buttons {
    flex-direction: column;
  }
}

/* ===== PRODUCT PAGE MODAL END ===== */

/* ===== PRODUCT PAGE END ===== */


/* ===== COLLECTION PAGE START===== */

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 10px auto;
}

@media(max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

.collection-item {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.collection-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 5px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.collection-item h3 {
  font-family: 'Noto Serif JP';
  font-size: 22px;
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}

.collection-item .btn {
  position: absolute;
  top: 350px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #111;
  color: #fff;
  padding: 12px 30px;
  border: 1px solid #111;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 10;
  transition: 0.3s;
}

.collection-item .btn:hover {
  background-color: #fff;
  color: #111;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 12px;
  color: #111;
  transition: 0.3s;
}

.btn:hover {
  background: #111;
  color: #fff;
}

/* ===== COLLECTION PAGE END ===== */


/* ===== CONTACT PAGE START ===== */

h1 {
  font-family: 'Noto Serif JP';
  font-size: 32px;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}

.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-info p {
  font-size: 14px;
  color: #555;
}

.contact-info strong {
  display: block;
  font-family: 'Noto Serif JP';
  font-size: 16px;
  margin-bottom: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #111;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-primary {
  padding: 14px 30px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
  color: #111;
}

footer {
  padding: 40px;
  text-align: center;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #e0e0e0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  color: #111;
  font-size: 13px;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-copyright {
  margin-top: 10px;
}

@media(max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 30px;
  }
}

/* ===== CONTACT PAGE END ===== */


/* ===== ABOUT PAGE START ===== */

h2 {
  font-family: 'Noto Serif JP';
  font-size: 28px;
  font-weight: 300;
  margin: 10px 0 20px 0;
}

.card strong {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  font-family: 'Noto Serif JP';
}

.card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

@media(max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE END ===== */


/* ===== CART PAGE START ===== */

/* ===== CART PAGE END ===== */

/* ===== CARD SECTION for index page START ===== */

.section-card {
  padding: 40px 20px;
  background: #f9f9f9;
  margin: 30px 0;
}

.card-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-content h2 {
  font-family: 'Noto Serif JP';
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #111;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

@media(max-width: 768px) {
  .section-card {
    padding: 40px 20px;
  }

  .card-content {
    padding: 30px 20px;
  }
}

/* ===== CARD SECTION for Index page END ===== */

/* ===== CART PAGE (LUXURY DESIGN) ===== */

.cart-container {
  max-width: 1100px;
  margin: auto;
  padding: 10px 40px;
}

.cart-container h1 {
  font-family: 'Noto Serif JP';
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 40px;
}

/* EACH ITEM */
.cart-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

/* IMAGE */
.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

/* DETAILS */
.cart-details {
  flex: 1;
}

.cart-details h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cart-details p {
  font-size: 13px;
  color: #666;
  margin: 4px 0;
}

/* QUANTITY BOX */
.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-box button {
  padding: 5px 10px;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.qty-box span {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

/* REMOVE BUTTON */
.cart-item button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}

.cart-item button:hover {
  color: #111;
}

/* SUMMARY */
.cart-summary {
  margin-top: 50px;
  text-align: right;
}

.cart-summary h2 {
  font-size: 22px;
  font-weight: 400;
}

/* CHECKOUT BUTTON */
.checkout-btn {
  margin-top: 20px;
  padding: 14px 32px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #333;
}

/* PAYMENT OPTIONS */
.payment-options {
  margin-top: 25px;
  font-size: 14px;
}

.payment-options label {
  display: block;
  margin-top: 8px;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-summary {
    text-align: left;
  }
}

/* MODAL NAVIGATION (ARROWS & DOTS) */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10;
}

.modal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.modal-nav-btn.prev { left: 20px; }
.modal-nav-btn.next { right: 20px; }

.modal-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-dot.active {
  background: #111;
  transform: scale(1.2);
}