/* ============================================
   PAPADUM EXPRESS — Modern Redesign
   Color Scheme preserved from original site
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #e91a23;
    --color-primary-dark: #ac212d;
    --color-primary-light: #fce8ea;
    --color-secondary: #333333;
    --color-accent: #f5a623;
    --color-bg: #ffffff;
    --color-bg-light: #f9f9f9;
    --color-bg-dark: #1a1a1a;
    --color-text: #444444;
    --color-text-light: #777777;
    --color-text-dark: #222222;
    --color-border: #e5e5e5;
    --color-success: #27ae60;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', 'Century Gothic', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --max-width: 1000px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: url('../images/template/main_bg.jpg') repeat center top;
    background-size: auto;
    background-attachment: fixed;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

main {
    position: relative; 
    width: 1000px; 
    margin: 0 auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 24px 0 24px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgb(255,255,255);
    border-bottom: 1px solid lightgray;
    border-radius: 0 0 1rem 1rem;
}

.section--alt {
    background: rgba(250,250,250,0.94);
}

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

.section-title {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background-image: -webkit-linear-gradient(top, #c51230, #680315);
    /* background: var(--color-primary); */
    color: #fff;
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn--white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn--lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-image: -webkit-linear-gradient(top, #c51230, #680315);
    color: #ccc;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__left img {
    height: 35px;
    display: inline-block;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar__right span {
    font-size: 0.8rem;
    margin-right: 6px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer__social .social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icon img {
    width: 16px;
    height: 16px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.header.scrolled .container {
    box-shadow: var(--shadow-md);
}

.header .container {
    background-image: url('/images/template/menu_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 36px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.80rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-secondary);
    position: relative;
}

.nav__cart-badge {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -12px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    margin: 6px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: transparent;
    color: #fff;
    padding: 40px 0;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    background: var(--color-bg-dark);
    border-radius: var(--radius-md);
    padding: 80px 60px;
    box-shadow: var(--shadow-lg);
}

.hero__content {
    flex: 1;
}

.hero__badge {
    display: inline-block;
    background: rgba(231,79,93,0.2);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero__content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__content h1 span {
    color: var(--color-primary);
}

.hero__content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    flex: 1;
    text-align: center;
}

.hero__image img {
    max-width: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   FEATURES / USP STRIP
   ============================================ */
.features-strip {
    background: transparent;
    color: #fff;
}

.features-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    /* background: var(--color-primary); */
    padding: 38px 40px 30px;
    box-shadow: var(--shadow-md);
}

.features-strip .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.features-strip .feature-item__icon {
    font-size: 1.8rem;
}

.features-strip .feature-item__text {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-shadow: 6px 6px 12px #000;
}

.features-strip .feature-item__sub {
    font-size: 0.8rem;
    opacity: 0.85;
    text-shadow: 6px 6px 12px #000;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    padding: 30px;
    background: var(--color-bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    max-height: 250px;
    margin: 0 auto;
    transition: transform var(--transition);
}

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

.product-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-card__desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-card__price small {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 400;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step {
    padding: 40px 24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16/9;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.15);
}

/* ============================================
   AWARDS
   ============================================ */
.awards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.award-badge {
    text-align: center;
    transition: transform var(--transition);
}

.award-badge:hover {
    transform: scale(1.08);
}

.award-badge img {
    margin: 0 auto;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.award-badge:hover img {
    filter: grayscale(0%);
}

/* ============================================
   ABOUT SECTION / PAGE
   ============================================ */
.about-content {
    align-items: center;
    padding-bottom: 60px;
}

.about-content__text h2 {
    margin: 20px 0;
}

.about-content__text p {
    font-size: 1.4rem;
    color: var(--color-text);
}

.about-content__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: transparent;
    color: #fff;
    padding: 40px 0 0;
}

.newsletter .container {
    text-align: center;
    background: var(--color-bg-dark);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.newsletter h2 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--color-primary);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-body);
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: transparent;
    color: #aaa;
    padding: 40px 0 20px;
}

.footer .container {
    background: var(--color-bg-dark);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 60px 40px 0;
    box-shadow: var(--shadow-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #999;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social .social-icon {
    width: 36px;
    height: 36px;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #999;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer ul li a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.footer__bottom a {
    color: #999;
}

.footer__made-in {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.footer__made-in img {
    height: 42px;
    display: inline-block;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery__main {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-light);
    padding: 40px;
    margin-bottom: 16px;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
}

.product-gallery__thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: border-color var(--transition);
    background: var(--color-bg-light);
    padding: 8px;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--color-primary);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 16px 0;
}

.product-info__desc {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--color-text);
}

.product-info__features {
    list-style: none;
    margin-bottom: 30px;
}

.product-info__features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.product-info__features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-selector label {
    font-weight: 600;
    font-size: 0.95rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background var(--transition);
}

.quantity-control button:hover {
    background: var(--color-border);
}

.quantity-control input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid var(--color-border);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}

.cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.cart-item__product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item__image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-light);
    padding: 8px;
    flex-shrink: 0;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__name {
    font-weight: 600;
}

.cart-item__remove {
    color: var(--color-primary);
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

.cart-item__remove:hover {
    text-decoration: underline;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    margin-top: 40px;
    padding: 30px;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.cart-summary__row--total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 2px solid var(--color-border);
    padding-top: 16px;
    margin-top: 10px;
    color: var(--color-text-dark);
}

/* ============================================
   CMS PAGES (Terms, Privacy, Shipping)
   ============================================ */
.page-header {
    background: transparent;
    color: #fff;
    padding: 20px 0 0;
}

.page-header .container {
    background: var(--color-bg-dark);
    padding: 12px 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: var(--shadow-md);
}

.page-header h1 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.cms-content {
    max-width: 800px;
    margin: 0 auto;
}

.cms-content h4,
.cms-content h5 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}

.cms-content p {
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-primary);
}

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

.contact-info-card {
    padding: 30px;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-family: var(--font-body);
    margin-bottom: 12px;
}

/* ============================================
   ALERT / FLASH MESSAGES
   ============================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert--success {
    background: #e8f8f0;
    color: #1a7d45;
    border: 1px solid #b8e6d0;
}

.alert--error {
    background: #fce8ea;
    color: #c0392b;
    border: 1px solid #f0b8bd;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }
    .hero__content p { margin: 0 auto 32px; }
    .hero__buttons { justify-content: center; }
    .hero__image img { max-width: 360px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .product-detail { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-strip .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .section { padding: 40px 0; }
    .section .container { border-radius: var(--radius-sm); margin: 0 10px; }

    .top-bar { display: none; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 999;
    }

    .nav.open {
        right: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .hero { padding: 20px 0; }
    .hero .container { padding: 40px 24px; border-radius: var(--radius-sm); margin: 0 10px; }
    .hero__content h1 { font-size: 2rem; }

    .features-strip { padding: 10px 0; }
    .features-strip .container { grid-template-columns: 1fr 1fr; padding: 20px; margin: 0 10px; border-radius: var(--radius-sm); }
    .steps { grid-template-columns: 1fr; gap: 20px; }
    .videos-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer { padding: 20px 0 10px; }
    .footer .container { padding: 40px 20px 0; margin: 0 10px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
    .newsletter { padding: 20px 0; }
    .newsletter .container { padding: 40px 24px; margin: 0 10px; border-radius: var(--radius-sm); }
    .page-header { padding: 10px 0; }
    .page-header .container { padding: 40px 24px; margin: 0 10px; border-radius: var(--radius-sm); }
    .header .container { border-radius: 0 0 var(--radius-sm) var(--radius-sm); margin: 0 10px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-radius: var(--radius-sm); }
    .newsletter-form button { border-radius: var(--radius-sm); }

    .cart-table thead { display: none; }
    .cart-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
        padding: 16px;
    }
    .cart-table td {
        display: flex;
        justify-content: space-between;
        border: none;
        padding: 8px 0;
    }
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .features-strip .container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-row { gap: 20px; }
    .award-badge img { max-height: 70px; }
}

/* Overlay for mobile nav */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ============================================
   FLOATING AWARDS STRIP (near hero)
   ============================================ */
/* ============================================
   LEFT SIDEBAR - AWARDS (Scrolls with page)
   ============================================ */

.awards-sidebar {
    position: absolute;
    left: 12%;
    top: 80px;
    width: 210px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.awards-sidebar .award-badge {
    display: block;
    transition: transform var(--transition);
}

.awards-sidebar .award-badge img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform var(--transition), filter var(--transition);
}

.awards-sidebar .award-badge:hover img {
    transform: scale(1.05);
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.4));
}

@media (max-width: 1199px) {
    .awards-sidebar {
        width: 130px;
        left: 10px;
        top: 160px;
    }
}

@media (max-width: 1024px) {
    .awards-sidebar {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
    }

    .awards-sidebar .award-badge {
        width: 120px;
    }
}

/* ============================================
   HERO IMAGE GRID
   ============================================ */
.hero-grid {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 0;
    background: #fff;
}

.hero-grid__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hero-grid__top img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-grid__bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hero-grid__bottom img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SHIPPING BAR
   ============================================ */
.shipping-bar {
    text-align: center;
    padding: 20px 0;
}

.shipping-bar img {
    max-width: 100%;
    margin: 0 auto;
}

/* ============================================
   FACEBOOK EMBED
   ============================================ */
.facebook-embed {
    text-align: center;
    margin: 30px 0;
}

.facebook-embed iframe {
    max-width: 100%;
    border: none;
}

/* ============================================
   EXTRA CONTENT BOX (What is a Papadum)
   ============================================ */
.content-box {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    height: 500px; 
    overflow-y: auto;
}

.content-box h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.content-box h4 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
}

.content-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
}

.content-box strong,
.content-box b {
    color: var(--color-text-dark);
}

/* ============================================
   OUR GOAL BOX
   ============================================ */
.goal-box {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-md);
    padding: 50px;
    margin-top: 26px;
    box-shadow: var(--shadow-sm);
}

.goal-box img {
    display: block;
    margin: 0 auto 30px;
    border-radius: var(--radius-md);
}

.goal-box p {
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
}

/* ============================================
   REGISTERED DESIGN IMAGE
   ============================================ */
.registered-design {
    text-align: right;
    padding: 40px 0 10px 0;
}

.registered-design img {
    max-width: 280px;
    display: inline-block;
    margin-right: 20px;
}

/* ============================================
   SOCIAL ICONS (larger in top bar)
   ============================================ */
.social-icon--lg {
    width: 35px;
    height: 35px;
    border-radius: 0;
    background: none;
    padding: 0;
}

.social-icon--lg img {
    width: 35px;
    height: 35px;
    filter: none;
}

/* ============================================
   UTILITY
   ============================================ */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }


.feature-item__icon-img {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.product-section {
    padding: 30px 30px 0;
    width: 100%;
    background: #fff;
    /* margin-bottom: 20px; */
}

.top-banner {
    width: 100%;
    display: block;
    margin-bottom: 16px;
}

.bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.bottom-row img {
    display: block;
    max-width: 100%;
    height: auto;
}

.bottom-row img:not(.divider) {
    flex: 1;
    width: 0;
    object-fit: contain;
}

.divider {
    width: 40px; /* adjust as needed */
    flex-shrink: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.d-none {
    display: none!important;
}

/* Product Detail Page - New Design */
.product-detail {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-top: 30px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.thumbnail {
    height: 100px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--color-primary);
}

.thumbnail.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary-light);
}

.product-info-section h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.price-section {
    margin-bottom: 12px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.variant-section {
    margin-bottom: 30px;
}

.variant-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-right: 10px;
}

.qty-btn {
    width: 48px;
    height: 56px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.qty-input {
    width: 80px;
    height: 56px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-primary {
    background-image: -webkit-linear-gradient(top, #c51230, #680315);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 79, 93, 0.3);
}

.btn-outline {
    padding: 1rem;
    border: 2px solid var(--color-primary);
    background: #fff;
    color: var(--color-primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.product-features {
    background: var(--color-bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}

.product-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

.feature-item span:first-child {
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-description {
    border-top: 1px solid #e5e5e5;
    padding-top: 24px;
}

.product-description h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.product-description p {
    line-height: 1.7;
    color: var(--color-text);
}

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
