/* ================================================================= 
   GLOBAL STYLES & RESET
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-grey: #F5F5F5;
    --secondary-grey: #C0C0C0;
    --dark-grey: #808080;
    --accent-black: #000000;
    --accent-gold: #D4AF37;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-grey);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================= 
   GLOBAL COMPONENTS
   ================================================================= */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-black);
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn:hover {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-black);
    color: var(--accent-black);
}

.btn-outline:hover {
    background-color: var(--accent-black);
    color: var(--white);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--secondary-grey);
    font-size: 14px;
    font-family: inherit;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-black);
    letter-spacing: 2px;
}

/* Badges */
.sale-badge,
.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.sale-badge {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

.new-badge {
    background-color: var(--accent-black);
    color: var(--white);
}

/* ================================================================= 
   HEADER & NAVIGATION
   ================================================================= */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--secondary-grey);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-black);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-image {
    width: 120px;
    height: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    margin: 0;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--accent-black);
    transition: color 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--accent-gold);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search */
.search-icon {
    position: relative;
}

.search-toggle {
    color: var(--accent-black);
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: var(--accent-gold);
    background-color: var(--primary-grey);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--white);
    border: 1px solid var(--secondary-grey);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--secondary-grey);
    border-radius: 4px;
    font-size: 14px;
}

.search-submit {
    background: var(--accent-black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

/* Cart */
.cart-icon {
    position: relative;
}

.cart-icon a {
    color: var(--accent-black);
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-icon a:hover {
    color: var(--accent-gold);
    background-color: var(--primary-grey);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-black);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin: 0;
}

.mobile-nav ul li {
    width: 100%;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--secondary-grey);
    text-decoration: none;
    color: var(--accent-black);
    font-weight: 600;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--primary-grey);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--accent-black);
    margin: 2px 0;
    transition: 0.3s;
}

/* ================================================================= 
   FOOTER
   ================================================================= */
footer {
    background-color: var(--accent-black);
    color: var(--white);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-link {
    cursor: pointer;
    color: #ccc;
    text-decoration: none;
}

.location-link:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* ================================================================= 
   HOME PAGE
   ================================================================= */

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background-color: var(--accent-black);
}

.hero-image-single {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Featured Products */
.featured-section {
    padding: 80px 0;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--secondary-grey);
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 400px;
    background-color: var(--primary-grey);
    display: block;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px 15px;
}

.product-category {
    font-size: 12px;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-black);
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--accent-gold);
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.price-old {
    text-decoration: line-through;
    color: var(--dark-grey);
    margin-right: 8px;
    font-size: 16px;
}

.price-sale {
    color: var(--accent-gold);
    font-size: 18px;
}

/* Featured Rotator */
.featured-rotator {
    position: relative;
    overflow: hidden;
}

.rotator-container {
    display: flex;
    transition: transform 0.5s ease;
}

.rotator-batch {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    flex-shrink: 0;
}

.rotator-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.rotator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-grey);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rotator-dot.active {
    background-color: var(--accent-black);
}

/* About Preview */
.about-section {
    padding: 80px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.about-content .eyebrow {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-title {
    font-size: 32px;
    line-height: 1.2;
    margin: 6px 0 14px;
}

.about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 18px 0 24px;
}

.highlight {
    background: #faf7ef;
    border: 1px solid #eee2c2;
    padding: 16px;
    border-radius: 8px;
}

.highlight h3 { 
    font-size: 16px; 
    margin: 0 0 6px; 
}

.highlight p { 
    font-size: 14px; 
    color: #555; 
    margin: 0; 
}

.about-cta { 
    display: flex; 
    gap: 12px; 
    margin-top: 6px; 
}

.about-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Newsletter */
.newsletter-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-black);
    font-weight: 300;
    letter-spacing: 2px;
}

.newsletter-section p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--accent-black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

/* ================================================================= 
   SHOP PAGE
   ================================================================= */
.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Filters */
.filters {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid var(--secondary-grey);
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-black);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-black);
}

.filter-option {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.filter-option input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    font-size: 14px;
    flex: 1;
}

.apply-filters-btn,
.clear-filters {
    width: 100%;
    margin-bottom: 10px;
}

/* Shop Products Grid */
.shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.products-header {
    margin-bottom: 30px;
}

.results-count {
    color: var(--dark-grey);
    font-size: 14px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 8px;
}

.no-products h3 {
    margin-bottom: 10px;
    color: var(--accent-black);
}

.no-products p {
    color: var(--dark-grey);
    margin-bottom: 20px;
}

/* ================================================================= 
   PRODUCT DETAIL PAGE
   ================================================================= */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    width: 100%;
    height: 500px;
    background-color: var(--primary-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-grey);
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background-color: var(--primary-grey);
    border: 1px solid var(--secondary-grey);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: var(--accent-black);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.product-details {
    padding: 20px 0;
}

.product-details h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--accent-black);
    line-height: 1.2;
}

.product-price-large {
    margin-bottom: 20px;
}

.product-price-large .price {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-gold);
}

.product-price-large .price-old {
    font-size: 24px;
    color: var(--dark-grey);
}

.product-price-large .price-sale {
    font-size: 32px;
    color: var(--accent-gold);
    margin-right: 10px;
}

.sale-percent {
    background-color: var(--accent-gold);
    color: var(--accent-black);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
}

/* Product Options */
.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 12px 20px;
    border: 2px solid var(--secondary-grey);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    min-width: 50px;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--accent-black);
    background-color: var(--accent-black);
    color: var(--white);
}

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

.color-btn {
    padding: 12px 20px;
    border: 2px solid var(--secondary-grey);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    min-width: 80px;
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--accent-black);
    transform: scale(1.05);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--secondary-grey);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background-color: var(--primary-grey);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--secondary-grey);
}

.quantity-selector input {
    width: 60px;
    padding: 12px;
    border: none;
    text-align: center;
    font-size: 16px;
    background-color: var(--white);
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Product Description */
.product-description-full,
.product-details-full {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-grey);
}

.product-description-full h3,
.product-details-full h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--primary-grey);
    display: flex;
    justify-content: space-between;
}

.details-list li:last-child {
    border-bottom: none;
}

/* Reviews */
.reviews-section {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: 40px;
}

.reviews-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--accent-black);
    text-align: center;
}

.reviews-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.review {
    background-color: var(--primary-grey);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--accent-black);
}

.review-date {
    color: var(--dark-grey);
    font-size: 14px;
}

.review-rating {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    line-height: 1.6;
}

.add-review {
    background-color: var(--primary-grey);
    padding: 30px;
    border-radius: 8px;
}

.star-rating {
    display: flex;
    gap: 5px;
    font-size: 24px;
    color: var(--secondary-grey);
    cursor: pointer;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: var(--accent-gold);
}

/* ================================================================= 
   CART PAGE
   ================================================================= */
.cart-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cart-items {
    background-color: var(--white);
    border: 1px solid var(--secondary-grey);
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px;
    background-color: var(--primary-grey);
    font-weight: 600;
    color: var(--accent-black);
    border-bottom: 1px solid var(--secondary-grey);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--secondary-grey);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background-color: var(--primary-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    margin-bottom: 5px;
    color: var(--accent-black);
}

.cart-item-details p {
    font-size: 12px;
    color: var(--dark-grey);
}

.cart-item-price,
.cart-item-total {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 16px;
}

.cart-item-quantity input {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--secondary-grey);
    border-radius: 4px;
    text-align: center;
}

.cart-remove {
    background-color: transparent;
    border: none;
    color: var(--dark-grey);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cart-remove:hover {
    color: #ff0000;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Cart Summary */
.cart-summary {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.cart-summary-box {
    background-color: var(--white);
    border: 1px solid var(--secondary-grey);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.cart-summary-box h3 {
    margin-bottom: 20px;
    color: var(--accent-black);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-grey);
}

.summary-row.total {
    border-bottom: none;
    font-weight: bold;
    font-size: 18px;
    color: var(--accent-gold);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.shipping-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-grey);
}

.shipping-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-grey);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--secondary-grey);
}

.empty-cart h2 {
    margin-bottom: 10px;
    color: var(--accent-black);
}

.empty-cart p {
    color: var(--dark-grey);
    margin-bottom: 30px;
}

/* ================================================================= 
   CHECKOUT PAGE
   ================================================================= */
.checkout-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form-section h2,
.order-summary-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-black);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.checkout-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--secondary-grey);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Payment Methods */
.payment-methods {
    margin: 20px 0;
}

.payment-method {
    margin-bottom: 15px;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method label {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 2px solid var(--secondary-grey);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method input[type="radio"]:checked + label {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.payment-method label i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent-gold);
}

.payment-method label span {
    font-weight: 600;
    color: var(--accent-black);
    margin-bottom: 5px;
}

.payment-method label p {
    color: var(--dark-grey);
    font-size: 14px;
    margin: 0;
}

/* Terms Agreement */
.terms-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.terms-agreement input[type="checkbox"] {
    margin-top: 3px;
}

.terms-agreement label {
    font-size: 14px;
    color: var(--dark-grey);
}

.terms-agreement a {
    color: var(--accent-gold);
    text-decoration: none;
}

.place-order-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Order Summary */
.order-summary-box {
    background-color: var(--white);
    border: 1px solid var(--secondary-grey);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-grey);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    background-color: var(--primary-grey);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details h4 {
    margin-bottom: 5px;
    color: var(--accent-black);
    font-size: 14px;
}

.order-item-details p {
    font-size: 12px;
    color: var(--dark-grey);
    margin-bottom: 2px;
}

.order-item-price {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 14px;
}

/* Security Features */
.security-features {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--secondary-grey);
}

.security-features h3 {
    margin-bottom: 15px;
    color: var(--accent-black);
    text-align: center;
}

.security-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.security-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.security-icon i {
    font-size: 20px;
    color: var(--accent-gold);
}

.security-icon span {
    font-size: 12px;
    color: var(--dark-grey);
}

/* ================================================================= 
   ORDER CONFIRMATION PAGE
   ================================================================= */
.confirmation-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.confirmation-success {
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    margin-bottom: 40px;
}

.confirmation-success h2 {
    margin-bottom: 10px;
    color: var(--accent-black);
}

/* Order Details */
.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.order-info-card,
.customer-info-card,
.order-items-card,
.order-totals-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--secondary-grey);
}

.order-info-card h3,
.customer-info-card h3,
.order-items-card h3,
.order-totals-card h3 {
    margin-bottom: 20px;
    color: var(--accent-black);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.info-row {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-value {
    font-weight: 600;
    color: var(--accent-black);
}

/* Order Items */
.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-image {
    width: 60px;
    height: 60px;
    background-color: var(--primary-grey);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h4 {
    margin-bottom: 5px;
    color: var(--accent-black);
}

.item-details p {
    font-size: 12px;
    color: var(--dark-grey);
    margin-bottom: 2px;
}

.item-quantity {
    font-weight: 600;
}

.item-price {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Order Totals */
.totals-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-grey);
}

.total-row.grand-total {
    border-bottom: none;
    font-weight: bold;
    font-size: 18px;
    color: var(--accent-gold);
}

/* Next Steps */
.next-steps {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--secondary-grey);
    margin-bottom: 40px;
}

.next-steps h3 {
    margin-bottom: 30px;
    color: var(--accent-black);
    text-align: center;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold);
    color: var(--accent-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--accent-black);
}

.step-content p {
    color: var(--dark-grey);
    line-height: 1.5;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================================================================= 
   ABOUT PAGE - REDESIGNED
   ================================================================= */

/* Hero Section */
.about-hero {
   background-color: #f5f5f5; /* Light grey background */
    color: #333333; /* Dark text color */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    margin-bottom: 40px;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-inner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-inner p {
    font-size: 1.4rem;
    opacity: 0.95;
    color: var(--accent-gold);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Section Headers */
.about-page-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-page-section .section-header.centered {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-page-section .eyebrow {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.about-page-section h2 {
    font-size: 2.5rem;
    color: var(--accent-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-page-section .intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Content */
.story-content-section {
    margin: 4rem 0;
    padding: 4rem 0;
    background: linear-gradient(to bottom, 
        var(--white) 0%, 
        #fafafa 100%);
    border-radius: 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text-content {
    padding-right: 2rem;
}

.story-paragraph {
    margin-bottom: 3rem;
    position: relative;
}

.story-paragraph h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-black);
    padding-left: 1.5rem;
    position: relative;
}

.story-paragraph h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--accent-gold), 
        #b8941f);
    border-radius: 2px;
}

.story-paragraph p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    margin: 1.5rem 0;
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-gold);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    font-weight: 500;
}

/* Media Cards */
.media-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.media-card.elevated {
    transform: translateY(20px);
}

.media-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        transparent 100%);
    padding: 2rem;
    color: var(--white);
}

.image-caption p {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

/* Collections Section */
.collections-section {
    margin: 6rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, 
        #faf7ef 0%, 
        #f5f1e3 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.collection-highlight {
    position: relative;
    z-index: 2;
}

.collection-highlight > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-gold);
}

/* Type Items */
.collection-types {
    margin: 2rem 0;
}

.type-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.type-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        var(--accent-gold), 
        #e6c158);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-black);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.type-item:hover .type-icon {
    transform: rotate(10deg) scale(1.1);
}

.type-content h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-black);
    font-size: 1.1rem;
    font-weight: 600;
}

.type-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.conclusion {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

/* Differentiators */
.differentiator-section {
    margin: 6rem 0;
    position: relative;
}

.differentiator-content {
    max-width: 900px;
    margin: 0 auto;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.differentiator-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--accent-gold), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.differentiator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.differentiator-item:hover::before {
    opacity: 1;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #e6c158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-black);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.differentiator-item:hover .diff-icon {
    transform: scale(1.1);
}

.diff-content h4 {
    margin-bottom: 1rem;
    color: var(--accent-black);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.diff-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.diff-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.values-section {
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9ecef 100%);
    border-radius: 25px;
    position: relative;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, 
        transparent, 
        var(--accent-gold), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        var(--accent-gold), 
        #e6c158);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-black);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-black);
    font-size: 1.4rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.vision-section {
    margin: 6rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, 
        var(--accent-black) 0%, 
        #1a1a1a 100%);
    border-radius: 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vision-text .eyebrow {
    color: var(--accent-gold);
    border-bottom: none;
}

.vision-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.3;
}

.vision-text p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vision-highlight {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-top: 2rem;
    position: relative;
}

.vision-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

.vision-highlight p {
    color: var(--white);
    font-style: italic;
    margin: 0;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ================================================================= 
   REDESIGNED WHO WE ARE SECTION - 4 ITEMS GRID
   ================================================================= */

/* Organizational Statements Section - Updated Grid Layout */
.org-statements-section {
    margin: 6rem 0 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(245, 245, 245, 0.8) 0%, 
        rgba(250, 250, 250, 0.9) 100%);
    border-radius: 25px;
    position: relative;
}

.org-statements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, 
        var(--accent-gold), 
        var(--accent-black), 
        var(--accent-gold));
    border-radius: 2px;
}

.section-header.centered {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Grid Container for 4 Items */
.org-grid-4x1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grid Item Design */
.org-grid-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, 
        var(--accent-gold), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.org-grid-item:hover::before {
    opacity: 1;
}

/* Grid Item Icons */
.grid-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        var(--accent-gold) 0%, 
        #e6c158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.org-grid-item:hover .grid-item-icon {
    transform: scale(1.1) rotateY(180deg);
    background: linear-gradient(135deg, 
        var(--accent-black) 0%, 
        #333 100%);
    color: var(--accent-gold);
}

.grid-item-icon i {
    transition: transform 0.3s ease;
}

.org-grid-item:hover .grid-item-icon i {
    transform: scale(1.1);
}

/* Grid Item Content */
.org-grid-item h3 {
    color: var(--accent-black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.8rem;
    width: 100%;
}

.org-grid-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.org-grid-item:hover h3::after {
    width: 60px;
}

.org-grid-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

/* Core Values Section Below Grid */
.core-values-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem 2rem 0;
}

.core-values-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.core-values-header .eyebrow {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.core-values-header h3 {
    font-size: 1.8rem;
    color: var(--accent-black);
    margin-bottom: 1rem;
}

.core-values-header p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Compact Core Values Grid */
.core-values-compact {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.compact-value-pill {
    grid-column: span 2;
    padding: 1rem 0.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.compact-value-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compact-value-pill:hover {
    background: var(--accent-gold);
    color: var(--accent-black);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.compact-value-pill:hover::before {
    opacity: 1;
}

.compact-value-pill::after {
    content: '★';
    position: absolute;
    top: 5px;
    right: 5px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.compact-value-pill:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ================================================================= 
   RESPONSIVE DESIGN FOR 4-ITEM GRID
   ================================================================= */

/* Large Tablets (769px to 1024px) */
@media (max-width: 1024px) {
    .org-grid-4x1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .org-grid-item {
        padding: 2rem 1.5rem;
    }
    
    .core-values-compact {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .compact-value-pill {
        grid-column: span 1;
    }
}

/* Tablets (481px to 768px) */
@media (max-width: 768px) {
    .org-statements-section {
        margin: 4rem 0 3rem;
        padding: 2rem 0;
        border-radius: 20px;
    }
    
    .org-grid-4x1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .org-grid-item {
        padding: 2rem 1.5rem;
    }
    
    .grid-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .core-values-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .core-values-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .org-statements-section {
        margin: 3rem 0 2rem;
        padding: 1.5rem 0;
        border-radius: 15px;
    }
    
    .section-header.centered {
        margin-bottom: 2rem;
    }
    
    .org-grid-4x1 {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .org-grid-item {
        padding: 1.5rem 1rem;
    }
    
    .org-grid-item h3 {
        font-size: 1.2rem;
    }
    
    .org-grid-item p {
        font-size: 0.9rem;
    }
    
    .grid-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .core-values-section {
        padding: 2rem 1rem 0;
        margin-top: 2rem;
    }
    
    .core-values-header h3 {
        font-size: 1.5rem;
    }
    
    .core-values-compact {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .compact-value-pill {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .org-grid-item {
        padding: 1.2rem 0.8rem;
    }
    
    .grid-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .org-grid-item h3 {
        font-size: 1.1rem;
    }
    
    .org-grid-item p {
        font-size: 0.85rem;
    }
}

/* Large Desktop Screens (1200px and up) */
@media (min-width: 1200px) {
    .org-grid-4x1 {
        gap: 3rem;
    }
    
    .org-grid-item {
        padding: 3rem 2rem;
    }
    
    .grid-item-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .org-grid-item h3 {
        font-size: 1.4rem;
    }
    
    .org-grid-item p {
        font-size: 1rem;
    }
}
/* CTA Section */
.about-cta-section {
    margin: 6rem 0 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, 
        #faf7ef 0%, 
        #f8f4e8 100%);
    border-radius: 25px;
    text-align: center;
    border: 1px solid #eee2c2;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, 
        var(--accent-gold), 
        var(--accent-black), 
        var(--accent-gold));
}

.cta-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-black);
    font-size: 2.2rem;
    font-weight: 600;
}

.cta-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-cta .btn-primary {
    background: var(--accent-black);
    color: var(--white);
    border: 2px solid var(--accent-black);
}

.about-cta .btn-primary:hover {
    background: var(--accent-gold);
    color: var(--accent-black);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.about-cta .btn-outline {
    background: transparent;
    color: var(--accent-black);
    border: 2px solid var(--accent-black);
}

.about-cta .btn-outline:hover {
    background: var(--accent-black);
    color: var(--white);
    border-color: var(--accent-black);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================= 
   RESPONSIVE DESIGN FOR ABOUT PAGE
   ================================================================= */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 3rem 1rem;
    }

    .about-hero-inner h1 {
        font-size: 2.5rem;
    }

    .about-hero-inner p {
        font-size: 1.2rem;
    }

    .story-content-section,
    .collections-section,
    .vision-section,
    .about-cta-section {
        padding: 2rem;
        margin: 3rem 0;
    }

    .story-grid,
    .collections-grid,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text-content {
        padding-right: 0;
        order: 2;
    }

    .story-visual {
        order: 1;
    }

    .media-card.elevated {
        transform: none;
    }

    .media-card img {
        height: 350px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .org-content {
        grid-template-columns: 1fr;
    }

    .core-values-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .about-hero {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .about-hero-inner h1 {
        font-size: 2rem;
    }

    .about-hero-inner p {
        font-size: 1rem;
    }

    .about-page-section h2 {
        font-size: 2rem;
    }

    .story-paragraph h3 {
        font-size: 1.3rem;
    }

    .type-item,
    .differentiator-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .type-icon,
    .diff-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .vision-stats {
        flex-direction: column;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .core-values-list {
        grid-template-columns: 1fr;
    }

    .media-card img {
        height: 250px;
    }

    .image-caption {
        padding: 1rem;
    }

    .image-caption p {
        font-size: 0.9rem;
    }

    .about-cta-section {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .about-hero {
        min-height: 80vh;
    }

    .about-hero-inner h1 {
        font-size: 4rem;
    }

    .about-hero-inner p {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .org-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .org-item.values {
        grid-column: 1 / -1;
    }
}

/* Small tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .org-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-values-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ================================================================= 
   CONTACT PAGE
   ================================================================= */
.contact-hero {
    background-color: #f5f5f5; /* Light grey background */
    color: #d6c7c7; /* Dark text color */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    margin-bottom: 40px;
    position: relative;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    font-weight: 700; /* Changed to 700 (bold) */
    letter-spacing: 0.5px;
    line-height: 1.2;
    color:#000000
}
.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Main */
.contact-main-section {
    padding: 80px 0;
    background: var(--primary-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-header h2 {
    color: var(--accent-black);
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-header p {
    color: #666;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: var(--primary-grey);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h4 {
    margin-bottom: 8px;
    color: var(--accent-black);
    font-size: 1.1rem;
}

.method-content p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.method-link {
    color: var(--accent-black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--accent-gold);
}

/* Business Hours */
.business-hours {
    width: 100%;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: #666;
}

.hour-item span:last-child {
    color: var(--accent-black);
    font-weight: 600;
}

/* Social Grid */
.social-section {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-section h4 {
    margin-bottom: 10px;
    color: var(--accent-black);
}

.social-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--primary-grey);
    border-radius: 10px;
    text-decoration: none;
    color: var(--accent-black);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.social-icon.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-icon.facebook { background: #1877F2; }
.social-icon.tiktok { background: #000000; }
.social-icon.twitter { background: #1DA1F2; }

.social-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.enhanced-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--accent-black);
}

.form-group label i {
    color: var(--accent-gold);
    width: 16px;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.submit-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-black);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-gold);
    color: var(--accent-black);
    transform: translateY(-2px);
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    color: var(--accent-black);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: var(--primary-grey);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9e9e9;
}

.faq-question h4 {
    margin: 0;
    color: var(--accent-black);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    margin: 0;
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ================================================================= 
   RESPONSIVE DESIGN
   ================================================================= */

/* Large screens (769px and up) */
@media (min-width: 769px) {
    .desktop-nav {
        display: block !important;
    }
    
    .mobile-nav,
    .menu-toggle {
        display: none !important;
    }
}

/* Tablets and mobile (768px and below) */
@media (max-width: 768px) {
    /* Header adjustments */
    .header-container {
        flex-direction: row;
        gap: 15px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .search-icon {
        order: 1;
    }

    .cart-icon {
        order: 2;
    }

    .header-actions {
        gap: 8px;
    }

    /* Hero adjustments */
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Product grids */
    .products-grid,
    .shop-products,
    .rotator-batch {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image {
        height: 300px;
    }

    /* About page */
    .about-inner,
    .story-grid,
    .collections-grid,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text-content {
        padding-right: 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Shop page */
    .shop-container {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
        margin-bottom: 30px;
    }

    /* Product detail */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cart page */
    .cart-header,
    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .cart-item-product {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .cart-summary {
        grid-template-columns: 1fr;
    }

    /* Checkout page */
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .security-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-sidebar {
        position: static;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    /* Order confirmation */
    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Newsletter form */
    .newsletter-form {
        flex-direction: column;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .products-grid,
    .shop-products {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-image {
        height: 250px;
    }

    .security-icons {
        grid-template-columns: 1fr;
    }

    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-cta .btn {
        width: 200px;
    }

    .vision-stats {
        flex-direction: column;
    }

    .type-item,
    .differentiator-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-method-card {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin: 0 auto;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .about-cta-section,
    .vision-section {
        padding: 2rem 1rem;
    }
}

/* Large screen optimization (1200px and up) */
@media (min-width: 1200px) {
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .header-right {
        gap: 40px;
    }
    
    .desktop-nav ul {
        gap: 30px;
    }
    
    .header-actions {
        gap: 20px;
    }
}
/* ================================================================= 
   SHOP PAGE - UPDATED STYLES
   ================================================================= */

/* Shop Hero Section */
.shop-hero {
    position: relative;
    background: url('assets/images/shop-hero.jpg') center/cover no-repeat;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.shop-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shop-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.shop-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Main Shop Content */
.shop-main-content {
    padding-bottom: 60px;
}

/* Shop Products Grid - 4 columns */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Shop Product Card - Simplified */
.shop-product-card {
    background-color: var(--white);
    border: 1px solid var(--secondary-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.shop-product-image {
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Simplified Product Info */
.shop-product-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.shop-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-black);
    line-height: 1.4;
}

.shop-product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-product-name a:hover {
    color: var(--accent-gold);
}

.shop-product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.shop-product-price .price,
.shop-product-price .price-sale {
    color: var(--accent-gold);
}

.shop-product-price .price-old {
    color: var(--dark-grey);
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 16px;
}

/* Shop Now Button */
.shop-now-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--accent-black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 150px;
}

.shop-now-btn:hover {
    background-color: var(--accent-gold);
    color: var(--accent-black);
}

/* Responsive Design for Shop Grid */
@media (max-width: 1200px) {
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .shop-product-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shop-hero {
        min-height: 350px;
    }
    
    .shop-hero .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: 300px;
    }
    
    .shop-hero .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .shop-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .shop-product-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .shop-hero {
        min-height: 250px;
        margin-bottom: 40px;
    }
    
    .shop-hero .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .shop-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .shop-product-image {
        height: 320px;
    }
    
    .shop-product-info {
        padding: 15px;
    }
}
/* Payment Page Styles */
.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.payment-summary, .payment-options {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-method {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.method-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #f9f9f9;
}

.method-icon {
    margin-right: 15px;
}

.method-icon img {
    height: 30px;
    width: auto;
}

.method-info {
    flex: 1;
}

.method-select input[type="radio"] {
    width: 20px;
    height: 20px;
}

.payment-method.active {
    border-color: #000;
}

.method-details {
    padding: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.payment-method.active .method-details {
    display: block;
}

.payment-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.bank-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.security-badges img {
    height: 40px;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 100px auto;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.qr-code {
    text-align: center;
    margin: 20px 0;
}

.qr-code img {
    max-width: 200px;
    height: auto;
}

.account-details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }
}
