:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #4cc9f0;
    --accent2: #7209b7;
    --accent3: #f72585;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --card-bg: rgba(30, 30, 46, 0.7);
    --gradient: linear-gradient(135deg, #4cc9f0, #7209b7, #f72585);
    --success: #4CAF50;
    --warning: #FF9800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Modern Background */
.modern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 10% 20%, rgba(76, 201, 240, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(247, 37, 133, 0.05) 0%, transparent 30%);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    filter: blur(40px);
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 60%;
    right: -100px;
    animation-delay: -5s;
    animation-direction: reverse;
}

.shape:nth-child(3) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(100px, 100px) rotate(360deg);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a.active {
    color: var(--accent);
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent3);
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section with Photo */
.hero {
    padding: 180px 5% 100px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-photo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-container {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid transparent;
    background: var(--gradient);
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.photo-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    display: block;
}

.photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

.title {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 20px;
}

.location {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.location i {
    margin-right: 10px;
    color: var(--accent3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(114, 9, 183, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Section Styles */
.section {
    padding: 25px 5%;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

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

/* Shop Section */
.shop-section {
    background: rgba(22, 33, 62, 0.5);
    border-radius: 20px;
    padding: 60px;
    margin-top: 30px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
}

.shop-title i {
    color: var(--accent3);
    margin-right: 15px;
}

.shop-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

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

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(76, 201, 240, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--accent3);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale {
    background: var(--success);
}

.product-badge.new {
    background: var(--accent);
}

.product-badge.best {
    background: var(--warning);
}

.product-image {
    height: 200px;
    background: linear-gradient(45deg, #4cc9f0, #7209b7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

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

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.original-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

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

.add-to-cart {
    padding: 10px 20px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.add-to-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
}

.view-details {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.view-details:hover {
    color: var(--accent3);
}

/* Shopping Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--primary);
    z-index: 2000;
    transition: right 0.5s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    background: rgba(22, 33, 62, 0.8);
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(45deg, #4cc9f0, #7209b7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

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

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity {
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--accent3);
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 25px;
    background: rgba(22, 33, 62, 0.8);
    border-top: 1px solid rgba(76, 201, 240, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.3);
}

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 0;
}

/* Overlay for cart modal */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Ventures Section */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.venture-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s;
    border: 1px solid rgba(76, 201, 240, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.venture-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.venture-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.venture-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.venture-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.venture-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.venture-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.venture-link:hover {
    color: var(--accent3);
    gap: 10px;
}

/* YouTube Section */
.youtube-section {
    background: rgba(22, 33, 62, 0.5);
    border-radius: 20px;
    padding: 60px;
    margin-top: 50px;
}

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

.youtube-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
}

.youtube-title i {
    color: #FF0000;
    margin-right: 15px;
}

.youtube-btn {
    background: #FF0000;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card.youtube-embed {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card.youtube-embed iframe {
    border-radius: 8px;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
}

.video-thumbnail {
    height: 180px;
    background: linear-gradient(45deg, #4cc9f0, #7209b7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.video-thumbnail:after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    padding: 20px;
}

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

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
    background: rgba(22, 33, 62, 0.5);
    border-radius: 20px;
    padding: 60px;
    margin-top: 50px;
}

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

.instagram-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
}

.instagram-title i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 15px;
}

.instagram-btn {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.instagram-embed-container {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: top;
    justify-content: top;
    padding: 20px;
    height: 350px;
}

.instagram-embed-container .instagram-media {
    max-width: 100% !important;
    margin: 0 !important;
}

.instagram-post {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 300px;
    position: relative;
}

.instagram-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.2);
    border-color: #E1306C;
}

.post-image {
    height: 100%;
    background: linear-gradient(45deg, #7209b7, #f72585);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.instagram-post:hover .post-overlay {
    transform: translateY(0);
}

.post-stats {
    display: flex;
    justify-content: space-around;
    color: white;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: rgba(22, 33, 62, 0.8);
    padding: 60px 5% 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(76, 201, 240, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.copyright a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-photo {
        order: -1;
        margin-bottom: 40px;
    }
    
    .photo-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .location {
        justify-content: center;
    }
    
    .cart-modal {
        width: 350px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        transition: right 0.4s;
        border-left: 1px solid rgba(76, 201, 240, 0.2);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .shop-section, .youtube-section, .instagram-section {
        padding: 40px 30px;
    }
    
    .shop-header, .youtube-header, .instagram-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .photo-container {
        width: 250px;
        height: 250px;
    }
    
    .cart-modal {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 80px 5%;
    }
    
    .ventures-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .shop-filters {
        justify-content: center;
    }
}