* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #7f8c8d;
    margin-top: -5px;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.icon-btn:hover {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-display {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}



.product-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% 20%;
}

.verse-container {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.verse {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
}

.verse cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    color: #7f8c8d;
    margin-top: 1rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.category-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 150px;
}

.category-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

#womenBtn:hover {
    background: #db34c2;
    color: white;
    border-color: #db34c2;
}
#customBtn:hover {
    background: #34db58;
    color: white;
    border-color: #34db58;
}

/* Store Section */
.store {
    min-height: 100vh;
    background: white;
    padding: 4rem 0;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.store-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.store-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.store-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
    overflow: hidden;
}

.product-image img {
    height: 100% !important;
    width: auto;
    object-fit: contain !important;
}


.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-description {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #e74c3c;
    font-weight: 600;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #219a52;
}

.checkout-modal {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.checkout-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.checkout-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.checkout-box label {
  display: block;
  margin: 0.5rem 0 0.2rem;
}

.checkout-box input, 
.checkout-box textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.confirm-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

.cancel-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .sidebar {
        margin-top: 2rem;
    }
    
    .category-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .verse {
        font-size: 1.4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .product-display img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: scale(1.2);
    }
}

footer {
    font-family: Inter, sans-serif;
    background: #222;
    color: #fff;
    padding: 32px 0 16px 0;
    text-align: center;
}
footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 18px;
}
footer .footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1em;
}
footer .footer-item:hover{
    background: -webkit-linear-gradient(45deg, #e04e4e, #8b57de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer a {
    color: #fff;
    text-decoration: none;
    word-break: break-all;
}

footer a:hover {
    background: -webkit-linear-gradient(45deg, #e04e4e, #8b57de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer #footer-credit {
    background: -webkit-linear-gradient(45deg, #ffaeae, #dcc6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px) {
    footer .footer-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    footer .footer-item {
        justify-content: center;
        font-size: 0.95em;
    }
    footer {
        padding: 24px 0 10px 0;
    }
}



/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}