/* -------------------------------------------------------------------------- */
/* 1. GOOGLE FONTS                                                            */
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Montserrat:wght@300;400;500&display=swap');

/* -------------------------------------------------------------------------- */
/* 2. GLOBAL RESET & BASE                                                     */
/* -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #2F2F2F;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Smooth animations globally */
img, a, button, .catalog-item, .btn {
  transition: all 0.35s ease;
}

/* -------------------------------------------------------------------------- */
/* 3. HEADER (Cream Aesthetic)                                                */
/* -------------------------------------------------------------------------- */
.header {
  width: 100%;
  padding: 15px 8%;
  background: #F5EBE0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}
.location-text {
  font-size: 14px;
  color: #6b4f4f;
  margin-left: 10px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #2F2F2F;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-btn:hover {
  transform: scale(1.15);
}

/* -------------------------------------------------------------------------- */
/* 4. CART ICON                                                               */
/* -------------------------------------------------------------------------- */
/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
}

.cart-icon:hover svg {
    stroke: #b5838d;
    transform: scale(1.05);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #c9ada7;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
/* OVERLAY */
.sidecart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: none;
    z-index: 900;
}

/* SIDE CART */
.sidecart {
    position: fixed;
    top: 0;
    right: -420px; /* hidden */
    width: 380px;
    height: 100%;
    background: #f7f3ef;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 25px;
    z-index: 1000;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* When active */
.sidecart.active {
    right: 0;
}

.sidecart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidecart-header h2 {
    margin: 0;
    font-size: 22px;
    color: #6b4f4f;
}

.close-sidecart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #b5838d;
}

/* ITEMS */
.sidecart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.sidecart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    background: white;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sidecart-item img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.sidecart-item-info {
    flex: 1;
}

.sidecart-item-info h4 {
    margin: 0;
    font-size: 15px;
    color: #6b4f4f;
}

.sidecart-item-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #b5838d;
}

.remove-item {
    background: none;
    border: none;
    color: #d9534f;
    font-size: 14px;
    cursor: pointer;
}

/* FOOTER */
.sidecart-footer {
    border-top: 1px solid #e8dcd2;
    padding-top: 15px;
}

.sidecart-total {
    font-size: 18px;
    color: #6b4f4f;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #c9ada7;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.checkout-btn:hover {
    background: #b5838d;
}


/* -------------------------------------------------------------------------- */
/* SHOP PAGE — PRODUCT GRID                                                   */
/* -------------------------------------------------------------------------- */

.shop {
  padding: 60px 8%;
  background: #ffffff;
}

.shop h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  background: #F4F1EA;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-item:hover img {
  transform: scale(1.07);
}

.product-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  margin-top: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-item p {
  font-size: 0.85rem;
  margin: 10px 0 20px;
  opacity: 0.8;
}

/* -------------------------------------------------------------------------- */
/* 5. HERO SECTION                                                            */
/* -------------------------------------------------------------------------- */
.hero {
  background-image: url("Oxyid/based.jpeg");
  background-size: cover;   
  background-position: center;
  background-repeat: no-repeat;

  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  text-align: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Fade + slide animation */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------- */
/* 6. CATALOG GRID                                                            */
/* -------------------------------------------------------------------------- */
section.catalog {
  padding: 60px 8%;
  background: #ffffff;
}

.catalog h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-item {
  text-align: center;
  cursor: pointer;
  transform: translateY(0);
}

.catalog-item:hover {
  transform: translateY(-8px);
}

.catalog-image-wrapper {
  width: 100%;
  background: #F4F1EA;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.catalog-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.catalog-image-wrapper:hover img {
  transform: scale(1.08);
}

.catalog-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2F2F2F;
}

/* -------------------------------------------------------------------------- */
/* 7. BUTTONS                                                                 */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  background: #7A8264;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #676E53;
  transform: translateY(-3px);
}

/* -------------------------------------------------------------------------- */
/* 8. FOOTER                                                                  */
/* -------------------------------------------------------------------------- */
.footer {
  margin-top: auto;
  width: 100%;
  background: #8F9779;
  color: #FFFFFF;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 28px;
  color: #cbff9e; /* soft pink */
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #0c1d13; /* darker pink */
  transform: scale(1.2);
}
.footer {
  text-align: center;
  font-size: 14px;
  color: #6b4f4f;
}

.footer .soar-link {
  color: #6b4f4f;
  text-decoration: underline;
  margin-left: 4px; /* small spacing */
  display: inline; /* ensures it stays on the same line */
}
.footer .soar-link {
  background: #f5eee7;
  padding: 2px 4px;
  border-radius: 4px;
}


/* -------------------------------------------------------------------------- */
/* 9. MOBILE RESPONSIVE                                                       */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .nav a {
    margin: 0 10px;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-text {
    align-items: center;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.catalog-item {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.catalog-image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
/* -----------------------------------
   CHECKOUT PAGE
----------------------------------- */
.checkout-container {
    padding: 50px 40px;
}

.checkout-title {
    margin-bottom: 25px;
}

.checkout-grid {
    display: flex;
    gap: 40px;
}

.checkout-form {
    width: 60%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e6ddd5;
}

.checkout-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #d8cfc7;
    background: #faf7f4;
}

.checkout-submit {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background: #b89c7d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.checkout-summary {
    width: 40%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e6ddd5;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* -----------------------------------
   SUCCESS / CANCEL / THANK YOU PAGES
----------------------------------- */
.success-container,
.cancel-container,
.thankyou-container {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.success-box,
.cancel-box,
.thankyou-box {
    background: #fff;
    padding: 40px;
    width: 450px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #e6ddd5;
}

.success-icon {
    font-size: 60px;
    color: #7bbf72;
    margin-bottom: 15px;
}

.cancel-icon {
    font-size: 60px;
    color: #d9534f;
    margin-bottom: 15px;
}

.thankyou-icon {
    font-size: 60px;
    color: #b89c7d;
    margin-bottom: 15px;
}

.order-number {
    margin: 15px 0;
    font-weight: 600;
}