/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
}

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

ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 1px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    color: #fff;
    text-transform: uppercase;
}

.top-bar-left a:hover {
    color: #ccc;
}

.top-bar-right .social-icons {
    display: flex;
    gap: 15px;
}

.top-bar-right .social-icons a {
    color: #fff;
    font-size: 12px;
}

.top-bar-right .social-icons a:hover {
    color: #ccc;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

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

.header-left, .header-right {
    width: 100px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.logo {
    text-align: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #000;
}

.menu-toggle, .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}

.cart-icon {
    font-size: 18px;
    color: #000;
}

/* Main Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 99;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item:hover > a {
    color: #000;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 500px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: flex;
    gap: 40px;
}

.dropdown-col {
    flex: 1;
}

.dropdown-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.dropdown-col ul li a {
    font-size: 12px;
    color: #666;
}

.dropdown-col ul li a:hover {
    color: #000;
}

.dropdown-col.featured {
    max-width: 250px;
}

.dropdown-col.featured img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.dropdown-col.featured h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 500px;
    color: #fff;
    z-index: 10;
}

.hero-content .category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 a {
    color: #fff;
}

.hero-content .excerpt {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content .read-more {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

/* Shop Instagram Section */
.shop-instagram {
    padding: 60px 0;
}

.shop-instagram h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.shop-instagram .view-all {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #666;
}

.shop-instagram .view-all:hover {
    color: #000;
}

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

.instagram-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

/* Featured Post Section */
.featured-post {
    padding: 40px 0;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-share {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #333;
    font-size: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.post-share a:hover {
    background-color: #000;
    color: #fff;
}

.post-content .meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.post-content .meta a {
    color: #666;
}

.post-content .meta a:hover {
    color: #000;
}

.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-content h2 a {
    color: #000;
}

.post-content .excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.post-content .read-more {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
}

/* Presets Section */
.presets-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.presets-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.presets-section .view-all {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #666;
}

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

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

.preset-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.preset-images img {
    width: 50%;
    height: 200px;
    object-fit: cover;
}

.preset-item h3 {
    font-size: 14px;
    font-weight: 500;
}

.view-all-btn {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #000;
    color: #fff;
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content > img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text .social-icons {
    display: flex;
    gap: 20px;
}

.about-text .social-icons a {
    font-size: 18px;
    color: #333;
}

.about-text .social-icons a:hover {
    color: #000;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content img {
    width: 60px;
    margin: 0 auto 20px;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}

/* Product Reviews Section */
.product-reviews {
    padding: 60px 0;
}

.product-reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.review-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #666;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn.active {
    color: #000;
    border-bottom-color: #000;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.review-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
}

.review-item h3 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* Best Sellers Section */
.best-sellers {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.best-sellers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.best-sellers .view-all {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #666;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.best-seller-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.best-seller-item .shop-btn {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 1px solid #000;
    color: #000;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.best-seller-item .shop-btn:hover {
    background-color: #000;
    color: #fff;
}

.best-seller-item h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.best-seller-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Latest Posts Section */
.latest-posts {
    padding: 60px 0;
}

.latest-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

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

.post-item .post-image {
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.post-item:hover .post-image img {
    transform: scale(1.05);
}

.post-item .post-info .category {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.post-item .post-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.post-item .post-info h3 a {
    color: #000;
}

.post-item .post-info h3 a:hover {
    color: #666;
}

/* YouTube Section */
.youtube-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.youtube-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.youtube-section .view-all {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #666;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.youtube-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.youtube-item h3 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #fff;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-logo img {
    width: 80px;
    margin: 0 auto 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.footer-nav a:hover {
    color: #000;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    font-size: 20px;
    color: #333;
}

.footer-social a:hover {
    color: #000;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-contact a {
    color: #666;
}

.footer-contact a:hover {
    color: #000;
}

.footer-copyright {
    margin-bottom: 30px;
}

.footer-copyright p {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
}

.back-to-top {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.back-to-top:hover {
    color: #000;
}

/* Category Page Layout */
.category-header {
    padding: 50px 0 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.category-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.category-tabs .tab-btn {
    background: none;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    color: #999;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.category-tabs .tab-btn:hover {
    color: #000;
}

.category-tabs .tab-btn.active {
    color: #000;
    border-bottom-color: #000;
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    padding: 50px 0;
}

.category-posts .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.category-posts .post-item .post-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.category-posts .post-item .post-info .meta {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 12px;
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.pagination .current {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.sidebar-about img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.sidebar-about p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.sidebar-about .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sidebar-about .social-icons a {
    font-size: 16px;
    color: #333;
}

.sidebar-about .social-icons a:hover {
    color: #000;
}

.sidebar-newsletter {
    background-color: #f9f9f9;
    padding: 25px;
    text-align: center;
}

.sidebar-newsletter p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sidebar-newsletter .newsletter-form {
    flex-direction: column;
    gap: 8px;
}

.sidebar-newsletter .newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-newsletter .newsletter-form button {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.sidebar-newsletter .newsletter-form button:hover {
    background-color: #333;
}

.sidebar-presets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sidebar-presets-grid .preset-thumb {
    text-align: center;
}

.sidebar-presets-grid .preset-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 8px;
}

.sidebar-presets-grid .preset-thumb h4 {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

.sidebar-reviews .review-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-reviews .review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-reviews .review-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-reviews .review-item h4 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.sidebar-shop-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-shop-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #f9f9f9;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    transition: all 0.3s ease;
}

.sidebar-shop-links a:hover {
    background-color: #000;
    color: #fff;
}

.sidebar-shop-links a i {
    font-size: 10px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background-color: #fff;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.search-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

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

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.search-form button {
    padding: 15px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .best-sellers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .youtube-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .category-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
    
    .category-posts .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header .container {
        padding: 15px 20px;
    }
    
    .header-left, .header-right {
        width: auto;
    }
    
    .logo a {
        font-size: 22px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-content {
        left: 30px;
        bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .featured-post-card {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .presets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content > img {
        width: 200px;
        height: 200px;
    }
    
    .about-text .social-icons {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .category-posts .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar {
        position: static;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .presets-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .best-sellers-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    
    .category-posts .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form button {
        width: 100%;
    }
}
