/* Custom Fonts */
@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Book BT.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Medium BT.ttf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --page-section-padding: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.mobile-header {
    display: none;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-logo img {
    height: 40px;
}

.mobile-cart {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #333;
    position: relative;
}

.mobile-cart-link svg {
    display: block;
    width: 22px;
    height: 22px;
}

.mobile-cart .cart-count {
    position: absolute;
    top: -3px;
    right: -6px;
    min-width: 17px;
    height: 17px;
    width: auto;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-weight: 500;
}

.mobile-menu .sub-menu {
    background: #f9f9f9;
    padding-left: 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation .menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation .menu > li {
    position: relative;
}

.main-navigation .menu > li > a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    color: #333;
}

.main-navigation .menu > li.current-menu-item > a {
    color: #000;
    font-weight: 600;
}

.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-menu a:hover {
    background: #f9f9f9;
    color: #000;
}

.language-menu img {
    width: 20px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.header-cart {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
}

.cart-count {
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(600px + var(--page-section-padding));
    overflow: hidden;
    background: #fff;
    padding-top: var(--page-section-padding);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,1);
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Introduction Section */
.intro-section {
    padding: var(--page-section-padding) 0;
    text-align: center;
}

.intro-text {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
}

/* Featured Collections */
.featured-collections {
    padding: var(--page-section-padding) 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #666;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
}

.collection-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
}

/* About Section */
.about-section {
    padding: var(--page-section-padding) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-text {
    padding: 20px;
}

.quote {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    color: #333;
}

.about-subtitle {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
    color: #666;
}

.btn-read-more {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Shop Section */
.shop-section {
    padding: var(--page-section-padding) 0;
    background: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 280px));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.home .shop-section .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-item {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    height: auto;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-meta-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 15px 0 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #333;
    text-align: left;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: right;
    white-space: nowrap;
}

.btn-add-cart {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.btn-add-cart .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.btn-add-cart svg {
    display: block;
}

.collection-card-info p {
    display: none;
}

.product-item:hover .btn-add-cart,
.product-item:focus-within .btn-add-cart {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    padding: var(--page-section-padding) 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #999;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: right;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.search-form input {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* Page Header Styles */
.page-header {
    padding: var(--page-section-padding) 0;
    text-align: center;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

/* Collection Pages */
.collection-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.collection-intro {
    padding: var(--page-section-padding) 0;
}

.collection-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.collection-title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #222;
}

.collection-description p {
    margin-bottom: 18px;
}

.collection-rich {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}

.collection-rich p {
    margin: 0 0 18px;
}

.collection-rich h2,
.collection-rich h3 {
    margin: 26px 0 12px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.collection-rich h2 {
    font-size: 20px;
}

.collection-rich h3 {
    font-size: 18px;
}

.collection-rich ul,
.collection-rich ol {
    margin: 0 0 18px 20px;
}

.collection-rich li {
    margin-bottom: 8px;
}

.collection-rich img {
    max-width: 100%;
    height: auto;
    margin: 18px auto;
    display: block;
}

.collection-rich blockquote {
    margin: 20px 0;
    padding: 0 0 0 18px;
    border-left: 2px solid #ddd;
    color: #666;
    font-style: italic;
}

.collection-rich a {
    color: #000;
    text-decoration: underline;
}

.collection-products {
    padding: var(--page-section-padding) 0;
    background: #fafafa;
}

/* Blog Styles */
.blog-section {
    padding: var(--page-section-padding) 0;
}

/* Shared UI Typography */
.u-title-display {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #000;
}

.u-title-display a {
    color: inherit;
}

.u-title-display a:hover {
    opacity: 0.7;
}

.u-link-cta {
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.u-link-cta:hover {
    opacity: 0.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.post-image {
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
}

.post-body {
    padding: 30px 0;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.post-category {
    background: #000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-date,
.post-views {
    color: #999;
    display: flex;
    align-items: center;
}

.post-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-title a {
    color: #333;
}

.post-title a:hover {
    color: #000;
}

.post-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Blog Index List Layout */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    align-items: start;
    background: #f3f3f3;
    border: 1px solid #e7e7e7;
    padding: 16px;
}

.blog-list-image {
    width: 180px;
    aspect-ratio: 1 / 1;
    background: #e6e6e6;
    overflow: hidden;
}

.blog-list-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-list-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-list-meta {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.blog-list-title {
    margin: 0;
}

.blog-list-excerpt {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    max-width: none;
}

.blog-list-read-more {
    margin-top: 2px;
}

/* Shop Filter Menu */
.shop-filters {
    margin-bottom: 40px;
    text-align: center;
}

.filter-menu {
    list-style: none;
    display: inline-flex;
    gap: 20px;
    padding: 15px 30px;
    background: #f9f9f9;
    border-radius: 50px;
}

.filter-menu li a {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-menu li a:hover,
.filter-menu li a.active {
    background: #000;
    color: #fff;
}

/* Cart Styles */
.cart-section {
    padding: var(--page-section-padding) 0;
    min-height: 400px;
}

.cart-section .container {
    max-width: 800px;
    padding: 0;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: #333;
    transform: translateY(-2px);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th,
.cart-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    background: #f9f9f9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.cart-totals {
    max-width: 400px;
    margin-left: auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
}

.cart-totals h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-totals table {
    width: 100%;
    margin-bottom: 30px;
}

.cart-totals table tr {
    border-bottom: 1px solid #ddd;
}

.cart-totals table td {
    padding: 15px 0;
}

.cart-totals table tr.total {
    border-top: 2px solid #333;
    border-bottom: none;
}

.cart-totals table tr.total td {
    font-size: 20px;
    padding-top: 20px;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background: #333;
}

/* About Full Page Styles */
.about-full {
    padding: var(--page-section-padding) 0;
}

.about-content-full {
    max-width: 800px;
    margin: 0 auto;
}

.about-image-large {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.about-text-full h2 {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

.about-text-full h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-full p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 20px;
    }
    
    .main-navigation .menu {
        gap: 20px;
    }
    
    .main-navigation .menu > li > a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .mobile-header {
        display: block;
    }
    
    .site-header {
        display: none;
    }
    
    .hero-slider {
        height: calc(400px + var(--page-section-padding));
    }
    
    .intro-text {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote {
        font-size: 24px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-grid {
        gap: 20px;
    }

    .home .shop-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .home .shop-section .product-meta-row {
        display: block;
        margin: 10px 0 4px;
    }

    .home .shop-section .product-title {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .home .shop-section .product-price {
        font-size: 18px;
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .blog-list-image {
        width: 160px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .filter-menu {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .home .shop-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home .shop-section .product-title {
        font-size: 14px;
    }

    .home .shop-section .product-price {
        font-size: 17px;
    }

    .hero-slider {
        height: calc(300px + var(--page-section-padding));
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: var(--page-section-padding) 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #444;
}

.policy-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #555;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0 25px 25px;
    color: #555;
}

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 50px 0;
}

.policy-content a {
    color: #000;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #666;
}

/* Shipping Table */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.shipping-table th,
.shipping-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #eee;
}

.shipping-table th {
    background: #f9f9f9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.shipping-table td {
    font-size: 14px;
    color: #555;
}

/* Material Cards */
.material-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.material-card h3 {
    margin-top: 0;
    color: #333;
}

.material-card h4 {
    margin-top: 25px;
}

/* Care Tips */
.care-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.tip {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.tip h4 {
    margin-top: 0;
    color: #333;
}

.tip p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Contact Info Box */
.contact-info {
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
}

.contact-info h2,
.contact-info h3 {
    color: #fff;
    margin-top: 0;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 10px;
}

.contact-info a {
    color: #fff;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-content h2 {
        font-size: 24px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .shipping-table {
        font-size: 13px;
    }

    .shipping-table th,
    .shipping-table td {
        padding: 10px;
    }

    .care-tips {
        grid-template-columns: 1fr;
    }
}

/* Success Page Styles */
.success-section {
    padding: var(--page-section-padding) 0;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.success-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.success-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 480px) {
    .success-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Collections Page Styles */
.collections-page {
    padding: var(--page-section-padding) 0;
}

.collections-page .page-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.collections-page .page-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

.collections-page .collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.collections-page-section {
    padding: var(--page-section-padding) 0;
}

.collections-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.collection-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collection-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.collection-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.05);
}

.collection-card-info {
    padding: 30px;
}

.collection-card-info .u-title-display {
    margin-bottom: 15px;
}

.collection-card-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.collection-card:hover .u-link-cta {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .collections-grid-large {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .collection-card-info {
        padding: 20px;
    }

    .collection-card-info .u-title-display {
        font-size: 20px;
    }
}

/* ============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================ */
.product-single {
    padding: var(--page-section-padding) 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery .main-image {
    background: #f5f5f5;
    margin-bottom: 15px;
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-gallery .thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.thumbnail-gallery .thumbnail.active,
.thumbnail-gallery .thumbnail:hover {
    border-color: #000;
}

.thumbnail-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding-top: 20px;
}

.product-info .breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info .breadcrumb a {
    color: #888;
    text-decoration: none;
}

.product-info .breadcrumb a:hover {
    color: #000;
}

.product-info .product-title {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.product-info .product-price {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px;
    color: #000;
}

.product-info .product-material,
.product-info .product-collection {
    font-size: 14px;
    margin: 0 0 10px;
    color: #555;
}

.product-info .product-collection a {
    color: #000;
    text-decoration: underline;
}

.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 25px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-size: 14px;
    color: #555;
}

.quantity-selector input {
    width: 70px;
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.btn-add-to-cart {
    flex: 1;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #333;
}

.btn-add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #888;
}

.product-meta p {
    margin: 5px 0;
}

.product-meta a {
    color: #000;
}

.stock-warning {
    color: #e67e22;
    font-weight: 600;
    font-size: 14px;
}

.out-of-stock {
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
}

/* Related Products */
.related-products {
    padding: var(--page-section-padding) 0;
    background: #f9f9f9;
}

.blog-single,
.related-posts,
.category-header,
.category-products,
.checkout-section,
.confirmation-section,
.error-section {
    padding: var(--page-section-padding) 0;
}

.blog-post-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Checkout Page */
.checkout-page .site-header,
.checkout-page .mobile-header {
    position: relative;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-summary {
    position: sticky;
    top: 20px;
    align-self: start;
}

.checkout-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
}

.checkout-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-form .form-group {
    margin-bottom: 18px;
}

.checkout-form label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 8px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Futura', sans-serif;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #000;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shipping-options {
    display: grid;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.shipping-option input {
    margin-right: 12px;
}

.shipping-option:hover {
    border-color: #000;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-title {
    font-weight: 600;
    font-size: 14px;
}

.option-desc {
    font-size: 12px;
    color: #777;
}

.option-price {
    font-weight: 600;
}

.free-shipping-notice {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.coupon-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.btn-apply-coupon {
    padding: 12px 18px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
}

.coupon-message {
    margin-top: 10px;
    font-size: 13px;
}

.coupon-message.success {
    color: #2e7d32;
}

.coupon-message.error {
    color: #c62828;
}

.summary-card {
    position: sticky;
    top: 20px;
}

/* Payment Method Styles */
.payment-methods {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-option:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

.payment-method-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-method-option input[type="radio"]:checked + .payment-method-content {
    font-weight: 600;
}

.payment-method-option input[type="radio"]:checked {
    accent-color: #000;
}

.payment-method-content {
    flex: 1;
}

.payment-method-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.payment-method-content small {
    color: #666;
    font-size: 13px;
}

.payment-method-icon {
    font-size: 24px;
    margin-left: 10px;
}

.payment-section {
    margin-top: 15px;
}

#paypal-button-container {
    margin-top: 10px;
}

.order-items {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.order-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.item-image {
    width: 70px;
    height: 90px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-quantity {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
}

.item-price {
    font-weight: 600;
    white-space: nowrap;
}

.order-totals {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.total-final {
    font-size: 16px;
    font-weight: 700;
}

.btn-place-order {
    width: 100%;
    margin-top: 15px;
    padding: 14px 18px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-place-order:hover {
    background: #333;
}

.secure-notice {
    margin-top: 12px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }

    .summary-card {
        position: static;
    }

    .checkout-card {
        padding: 20px;
    }

    .shipping-options {
        grid-template-columns: 1fr !important;
    }

    .order-item {
        gap: 10px;
    }

    .item-image {
        width: 60px;
        height: 80px;
    }
}

@media (max-width: 600px) {
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }

    .coupon-form {
        grid-template-columns: 1fr;
    }

    .payment-method-option {
        padding: 12px;
        font-size: 14px;
    }

    .payment-method-option span {
        font-size: 13px;
    }

    .checkout-card h3 {
        font-size: 16px;
    }
}

.related-products .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Product Page Responsive */
@media (max-width: 992px) {
    .product-layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    .product-info .product-title {
        font-size: 24px;
    }

    .product-info .product-price {
        font-size: 20px;
    }

    .product-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .btn-add-to-cart {
        width: 100%;
    }
}
