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

:root {
    --primary-green: #51b849;
    --primary-orange: #ff6930;
    --dark-bg: #1a1a1a;
    --dark-bg-alt: #2d2d2d;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background-color: #45a03b;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-green);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header-top {
    background-color: var(--dark-bg);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    gap: 1.5rem;
}

.header-actions a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: var(--primary-green);
}

.header-actions svg {
    width: 1rem;
    height: 1rem;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    color: var(--primary-green);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-green);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon,
.cart-icon {
    cursor: pointer;
    position: relative;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.search-icon svg,
.cart-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-orange);
    color: white;
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    border-radius: 1rem;
    min-width: 1.25rem;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.search-bar {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.search-bar.active {
    display: block;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
}

.search-bar input:focus {
    border-color: var(--primary-green);
}

.search-bar button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-green);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #45a03b 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header .section-title {
    margin: 0;
    text-align: left;
}

.view-all {
    color: var(--primary-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

.view-all svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(81, 184, 73, 0.2);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #45a03b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
}

/* ===== PRODUCTS GRID ===== */
.featured-products {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image svg {
    width: 4rem;
    height: 4rem;
    color: #9ca3af;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.product-wishlist:hover {
    background-color: var(--primary-orange);
    color: white;
}

.product-wishlist.active {
    background-color: var(--primary-orange);
    color: white;
}

.product-wishlist svg {
    width: 1.25rem;
    height: 1.25rem;
}

.product-body {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-green);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-text {
    color: #666;
    font-size: 0.875rem;
}

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

.product-price-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #45a03b;
    transform: scale(1.1);
}

.add-to-cart-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #45a03b 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background-color: #f9fafb;
    padding: 1rem 0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb svg {
    width: 1rem;
    height: 1rem;
    color: #999;
}

.breadcrumb span {
    color: #666;
}

/* ===== SHOP LAYOUT ===== */
.shop-section {
    padding: 3rem 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar */
.shop-sidebar {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sidebar-header h3 {
    font-size: 1.25rem;
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.filter-search {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.filter-search:focus {
    outline: none;
    border-color: var(--primary-green);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.filter-option input {
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-inputs input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.btn-apply-price {
    width: 100%;
    padding: 0.5rem;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
}

.btn-apply-price:hover {
    background-color: #45a03b;
}

/* Shop Content */
.shop-content {
    flex: 1;
}

.shop-toolbar {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-filter-toggle {
    display: none;
    padding: 0.5rem 1rem;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
}

.results-count {
    color: #666;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-options select {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.no-results h3 {
    margin-bottom: 0.5rem;
}

/* ===== PRODUCT DETAILS ===== */
.product-details {
    padding: 3rem 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    background: #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.image-placeholder svg {
    width: 5rem;
    height: 5rem;
    color: #9ca3af;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background-color: var(--primary-orange);
    color: white;
}

.wishlist-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    aspect-ratio: 1;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Product Info */
.product-info {
    position: relative;
}

.product-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-badge {
    background-color: #e5e7eb;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 700;
}

.discount-badge {
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.product-stock svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.qty-btn {
    width: 3rem;
    height: 3rem;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: #f3f4f6;
}

.quantity-controls input {
    width: 4rem;
    height: 3rem;
    border: none;
    border-left: 2px solid #e5e7eb;
    border-right: 2px solid #e5e7eb;
    text-align: center;
    font-size: 1rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.meta-label {
    font-weight: 600;
    min-width: 100px;
}

/* Product Share */
.product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.share-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== PRODUCT TABS ===== */
.product-tabs {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.tab-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

.tab-btn:hover {
    background-color: #f3f4f6;
}

.tab-btn.active {
    color: var(--primary-green);
    background-color: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-green);
}

.tabs-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 1rem;
}

.tab-panel h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.tab-panel ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.tab-panel li {
    margin-bottom: 0.5rem;
    color: #666;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specs-table td {
    padding: 1rem;
}

.specs-table td:first-child {
    width: 200px;
}

/* Reviews */
.reviews-summary {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

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

.big-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.avg-rating .stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.reviewer-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #999;
    font-size: 0.875rem;
}

.review-text {
    color: #666;
}

/* Related Products */
.related-products {
    padding: 3rem 0;
    background-color: #f9fafb;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: linear-gradient(to right, var(--primary-green), #45a03b);
    color: white;
    padding: 2rem 0;
    margin-top: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-text {
    text-align: left;
}

.feature-title {
    font-weight: 600;
    font-size: 1rem;
}

.feature-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-alt) 50%, var(--dark-bg) 100%);
    color: var(--gray-300);
}

.footer > .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    max-width: 100%;
}

.brand-title {
    font-size: 1.875rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.brand-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.newsletter {
    margin-bottom: 1.5rem;
}

.newsletter-title {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.625rem 1rem;
    background-color: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input::placeholder {
    color: var(--gray-600);
}

.newsletter-input:focus {
    border-color: var(--primary-green);
}

.newsletter-button {
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-orange);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    opacity: 0.9;
}

.newsletter-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-green);
    color: white;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-column {
    margin-bottom: 1rem;
}

.footer-heading {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-green {
    background-color: var(--primary-green);
}

.contact-icon-orange {
    background-color: var(--primary-orange);
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-text {
    color: var(--gray-400);
}

.contact-text p {
    font-size: 0.875rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.payment-badges {
    display: flex;
    gap: 0.5rem;
}

.payment-badge {
    padding: 0.375rem 0.75rem;
    background-color: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
}

/* ===== FLOATING BUTTON ===== */
.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #45a03b 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.floating-button.visible {
    opacity: 1;
    visibility: visible;
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s;
        overflow-y: auto;
    }

    .shop-sidebar.active {
        left: 0;
    }

    .sidebar-header .close-sidebar {
        display: block;
    }

    .btn-filter-toggle {
        display: flex;
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: relative;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }

    .feature-item {
        justify-content: flex-start;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .payment-methods {
        justify-content: flex-start;
    }

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .product-actions {
        flex-direction: column;
    }

    .tabs-header {
        overflow-x: auto;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .header-contact {
        font-size: 0.75rem;
    }

    .header-actions {
        font-size: 0.875rem;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.floating-button:hover svg {
    animation: pulse 1s infinite;
}
