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

:root {
    --primary: #5c899d;
    --secondary: #fffcef;
    --dark: #2c3e50;
    --gray-light: #f5f3f0;
    --gray: #999999;
    --accent: #d4a574;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--secondary);
}

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

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--primary);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.cart-link:hover {
    color: white !important;
    opacity: 0.9;
}

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

.cart-count {
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #f9f6f1 100%);
}

.hero-content{
    padding-left: 10%;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #4a7080;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--gray-light);
    color: var(--dark);
    border: 2px solid var(--primary);
}

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

/* Featured Section */
.featured {
    padding: 80px 20px;
    background-color: white;
}

.featured h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: var(--gray-light);
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-info .price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: var(--gray-light);
}

.about-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.about-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.about-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #4a7080 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

.newsletter-form .btn {
    background-color: var(--accent);
    color: white;
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Shop Header */
.shop-header {
    background: linear-gradient(135deg, var(--primary) 0%, #4a7080 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.shop-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.shop-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Shop Container */
.shop-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.sidebar h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--dark);
    text-transform: uppercase;
}

.filter-group label {
    display: flex;
    margin-bottom: 8px;
    cursor: pointer;
    color: var(--gray);
}

.filter-group input {
    margin-right: 10px;
    cursor: pointer;
}

.size-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.size-btn {
    padding: 8px;
    border: 2px solid var(--gray-light);
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Shop Main */
.shop-main {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.shop-controls {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.shop-controls select {
    padding: 8px 15px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--gray-light);
    padding: 15px 20px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 5px;
}

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

/* Product Detail */
.product-detail-container {
    padding: 40px 20px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-detail-image {
    aspect-ratio: 1;
    background-color: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
}

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

.product-detail-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-detail-info .category {
    color: var(--gray);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-detail-info .rating {
    color: var(--primary);
    margin-bottom: 20px;
}

.product-detail-info .price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-detail-info .description {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.size-selector {
    margin-bottom: 25px;
}

.size-selector h3 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
}

.size-option {
    padding: 10px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover,
.size-option.selected {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: bold;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector label {
    font-size: 14px;
    text-transform: uppercase;
}

.quantity-controls {
    display: flex;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-controls button {
    padding: 8px 15px;
    border: none;
    background-color: var(--secondary);
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.quantity-controls button:hover {
    background-color: var(--primary);
    color: white;
}

.quantity-controls input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.specs {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.specs h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.specs-list {
    display: grid;
    gap: 10px;
}

.specs-list div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--gray);
    font-size: 14px;
}

.specs-list strong {
    color: var(--dark);
}

/* Related Products */
.related-section {
    padding: 60px 20px;
    background-color: white;
}

.related-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark);
}

/* Cart Container */
.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 40px 20px;
    min-height: 60vh;
}

.cart-main {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.empty-cart p {
    color: var(--gray);
    margin-bottom: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    aspect-ratio: 1;
    background-color: var(--gray-light);
    border-radius: 5px;
    overflow: hidden;
}

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

.cart-item-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.cart-item-details .size {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}

.cart-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-controls input {
    width: 50px;
    padding: 5px;
    border: 2px solid var(--gray-light);
    border-radius: 3px;
    text-align: center;
}

.remove-btn {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.remove-btn:hover {
    transform: scale(1.2);
}

.cart-summary {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray);
}

.summary-row.total {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark);
    padding-top: 15px;
    border-top: 2px solid var(--gray-light);
}

/* Checkout Container */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 40px 20px;
}

.checkout-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.checkout-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
}

.checkout-section:last-of-type {
    border-bottom: none;
}

.checkout-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
}

.checkbox-label input {
    width: auto;
    cursor: pointer;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-option {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: var(--primary);
    background-color: var(--secondary);
}

.shipping-option input {
    width: 20px;
    cursor: pointer;
}

.shipping-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shipping-price {
    font-weight: bold;
    color: var(--primary);
}

.checkout-summary {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.checkout-summary h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark);
}

.checkout-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.checkout-item:last-of-type {
    border-bottom: none;
}

.checkout-item-image {
    width: 70px;
    height: 70px;
    background-color: var(--gray-light);
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.checkout-item-details h4 {
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--dark);
}

.checkout-item-details p {
    font-size: 12px;
    color: var(--gray);
}

.summary-divider {
    height: 1px;
    background-color: var(--gray-light);
    margin: 15px 0;
}

/* About Full Section */
.about-full {
    padding: 80px ;
    max-width: 1200px;
    margin: auto;

    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-full h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-full p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    aspect-ratio: 1;
    background-color: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
}

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

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: var(--gray-light);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background-color: white;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    margin-top: 20px;
    color: var(--dark);
}

.team-member p {
    color: var(--gray);
    font-size: 14px;
    margin: 5px 0;
    padding: 0 15px;
}

.team-bio {
    padding-bottom: 20px;
    font-size: 13px !important;
    font-style: italic;
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #4a7080 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-card p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 20px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Authentication Pages */
.auth-wrapper {
    background: linear-gradient(135deg, var(--secondary) 0%, #f9f6f1 100%);
    min-height: calc(100vh - 70px);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    align-items: center;
}

.auth-form {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 150%;
}


.auth-form h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--dark);
}

.auth-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 25px 0;
    color: var(--gray);
    font-size: 14px;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--gray-light);
}

.divider {
    position: relative;
}

.divider::after {
    content: attr(data-text);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    padding: 12px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    color: var(--dark);
}

.social-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.google-btn:hover {
    background-color: #f3f3f3;
}

.facebook-btn:hover {
    background-color: #e7f3ff;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--gray);
    font-size: 14px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-image {
    aspect-ratio: 4/5;
    background-color: var(--gray-light);
    border-radius: 10px;

    box-shadow: var(--shadow);
}

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

.password-hint {
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px !important;
}

/* Thank You Page */
.thank-you-wrapper {
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, var(--secondary) 0%, #f9f6f1 100%);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    background-color: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 700px;
    text-align: center;
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #4a7080 100%);
    color: white;
    border-radius: 50%;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--dark);
}

.thank-you-message {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.detail-box {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
}

.detail-label {
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
}

.order-summary-box {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.order-summary-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
}

.thank-you-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.thank-you-item:last-of-type {
    border-bottom: none;
}

.thank-you-item-details {
    text-align: left;
}

.item-name {
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 3px 0;
}

.item-details {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.item-price {
    font-weight: bold;
    color: var(--primary);
    margin: 0;
}

.confirmation-message {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.confirmation-message h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.confirmation-message p {
    font-size: 14px;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

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

.step {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step p {
    margin: 0 0 8px 0;
}

.step p:first-of-type {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.step p:last-of-type {
    font-size: 13px;
    color: var(--gray);
}

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

.support-section {
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 14px;
}

.support-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.support-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 20px;
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image {
        order: -1;
    }

    /* Sections */
    .featured, .about-section, .newsletter, .team-section, .stats-section, .contact-container {
        padding: 60px 20px;
    }

    .featured h2, .about-section h2, .newsletter h2, .team-section h2, .values-section h2, .related-section h2 {
        font-size: 36px;
    }

    .products-grid, .about-grid, .team-grid, .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Shop Page */
    .shop-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 1;
    }

    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr;
    }

    /* Cart Page */
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item-details {
        margin-right: auto;
    }

    .cart-summary {
        order: 1;
    }

    /* Checkout Page */
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        order: 1;
    }

    /* About Full Page */
    .about-full {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .about-image {
        order: -1;
    }

    /* Contact Page */
    .contact-container {
        grid-template-columns: 1fr;
    }

    /* responsive auth pages */
    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auth-form {
        padding: 30px;
    }

    .auth-image {
        order: -1;
    }

    .thank-you-container {
        padding: 30px;
    }

    .thank-you-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .thank-you-container h1 {
        font-size: 32px;
    }

    .order-details {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* General */
    .container, .nav-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Sections */
    .featured h2, .about-section h2, .newsletter h2, .team-section h2, .values-section h2, .related-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .products-grid, .about-grid, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: unset;
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Shop Header */
    .shop-header h1 {
        font-size: 36px;
    }

    /* Product Detail */
    .product-detail-info h1 {
        font-size: 30px;
    }

    .product-detail-info .price {
        font-size: 28px;
    }

    /* Cart Page */
    .cart-item {
        grid-template-columns: 60px 1fr;
        padding: 15px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-details h3 {
        font-size: 14px;
    }

    .cart-item-price {
        font-size: 16px;
    }

    .cart-controls input {
        width: 40px;
        padding: 3px;
    }

    .remove-btn {
        font-size: 16px;
    }

    /* Checkout Page */
    .checkout-section h2 {
        font-size: 18px;
    }

    .form-group input, .form-group textarea {
        padding: 10px;
    }

    /* About Full */
    .about-full h2 {
        font-size: 30px;
    }

    /* Stats Section */
    .stat-card h3 {
        font-size: 36px;
    }

    .stat-card p {
        font-size: 16px;
    }

    /* Contact Page */
    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .auth-form {
        padding: 20px;
    }

    .thank-you-container {
        padding: 20px;
    }

    .thank-you-container h1 {
        font-size: 24px;
    }

    .order-summary-box {
        padding: 20px;
    }

    .detail-box {
        padding: 15px;
    }

    .detail-value {
        font-size: 16px;
    }
}


.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

/* Social media button colors */
.social-container a {
  border: none;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  color: white;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

/* Facebook */
.social-container a:nth-child(1) {
  background-color: #1877f2;
}

.social-container a:nth-child(1):hover {
  background-color: #125abe;
  transform: scale(1.1);
}

/* Google */
.social-container a:nth-child(2) {
  background-color: #db4437;
}

.social-container a:nth-child(2):hover {
  background-color: #b23324;
  transform: scale(1.1);
}

/* LinkedIn */
.social-container a:nth-child(3) {
  background-color: #0077b5;
}

.social-container a:nth-child(3):hover {
  background-color: #005f8e;
  transform: scale(1.1);
}