* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", sans-serif;
}

:root {
    --olive: #556b2f;
    --olive-hover: #6b8e23;
    --light: #f8f8f5;
    --text: #111;
    --muted: #555;
    --border: #ddd;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--text);
    line-height: 1.5;
}

header {
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    letter-spacing: 4px;
    font-size: 28px;
}

header p {
    color: #777;
    margin-top: 10px;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    margin-bottom: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero img:hover {
  opacity: 0.95;
}

.hero-overlay {
    position: absolute;
    inset: 0;   
}

.hero-text {
    position: absolute;
    bottom: 70px;
    left: 250px;
    color: var(--white);
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.3s;
    z-index: 2;
    text-shadow: 0 0 2px rgba(0, 0, 0, 1),
                 0 0 6px rgba(0, 0, 0, 0.4),
                 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
    font-size: 36px;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--olive);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background 0.2s ease;
}

.hero-btn:hover {
    background: var(--olive-hover);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 22px;
    letter-spacing: 2px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.product-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;


}
.stock-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
}

.stock-label.in-stock {
  background: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.18);
}

.stock-label.made-to-order {
  background: rgba(139, 94, 60, 0.08);
  color: #8b5e3c;
  border: 1px solid rgba(139, 94, 60, 0.18);
}
/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps square */
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
    display: block;
}

/* FORCE ALL IMAGES TO BE IDENTICAL IN SIZE */
.slide {
    position: absolute;   /* stack slides properly */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* THIS is the key */
    display: none;
    transition: transform 0.35s ease;
}

.slider:hover .slide.active {
    transform: scale(1.03);
    transition: transform 0.35s ease;
}

/* ONLY ACTIVE IMAGE SHOWS */
.slide.active {
    display: block;
}

/* BUTTONS */
.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2; /* ensures buttons stay above images */
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.image-modal.open {
    display: flex;
}

.modal-content {
    max-width: min(92vw, 1100px);
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    background: #111;
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
    left: 24px;
}

.modal-next {
    right: 24px;
}

.slide {
    cursor: zoom-in;
}

@media (max-width: 768px) {
    .image-modal {
        padding: 20px;
    }

    .modal-content {
        max-width: 94vw;
        max-height: 76vh;
        border-radius: 12px;
    }

    .modal-nav {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .close-modal {
        width: 44px;
        height: 44px;
        font-size: 24px;
        top: 12px;
        right: 12px;
    }

    .modal-prev {
        left: 12px;
    }

    .modal-next {
        right: 12px;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

h2 {
    margin-top: 20px;
    font-size: 20px;
}

.description {
    margin: 15px 0;
    line-height: 1.6;
    color: var(--muted);
}

.price {
    font-weight: bold;
    margin-bottom: 20px;
}

.buy-btn,
.checkout-btn,
#apply-discount,
.cart-controls button {
    display: inline-block;
    text-align: center;
    padding: 14px 16px;
    background: var(--olive);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.buy-btn:hover,
.checkout-btn:hover,
#apply-discount:hover,
.cart-controls button:hover {
    background: var(--olive-hover);
}

/* BASKET */
.basket-section {
    max-width: 1200px;
    margin: 20px auto 60px;
    padding: 0 20px 20px;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.cart-item p {
    margin: 0;
    color: var(--muted);
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-controls input {
    width: 70px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.cart-summary {
    max-width: 420px;
    margin-left: auto;
    padding: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 8px;
}

.discount-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.discount-row input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.cart-summary p {
    margin-bottom: 10px;
}

.total-line {
    margin-top: 16px;
    font-size: 18px;
}

/* FOOTER */


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-text {
        left: 24px;
        right: 24px;
        bottom: 40px;
        max-width: none;
    }

    .hero-text h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-summary {
        max-width: 100%;
    }
}
.coming-soon-card {
  border: 1px solid #e5e5e5;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  background: #fafafa;
  max-width: 500px;
  margin: 40px auto;
}

.coming-soon-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.coming-soon-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.site-footer {
  background: #111;
  color: #f5f1ea;
  margin-top: 80px;
  padding: 60px 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.footer-brand h3 {
  font-size: 22px;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.78);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links a,
.footer-contact a {
  color: rgba(245, 241, 234, 0.78);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.8;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
  color: #ffffff;
}

.footer-contact p:last-child {
  margin-top: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 35px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.55);
  text-align: center;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    padding: 45px 20px 22px;
  }
}
.policy-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.8;
  color: #1a1a1a;
}

.policy-container h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.policy-container h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.policy-container p,
.policy-container li {
  font-size: 15px;
  color: #444;
}

.policy-container ul {
  padding-left: 20px;
}
.policy-container h1 {
  font-weight: 500;
  letter-spacing: -0.5px;
}

.policy-container {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.back-home {
  position: absolute;
  top: 30px;
  left: 30px;
}

.back-link {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 13px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.shipping-banner {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 12px;
  background: transparent;
  color: #555;
  border-bottom: 1px solid #eee;
}



