@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.container {
    width: 100%;
}

.top-header {
    background: #ddd8ee;
    text-align: center;
    width: 100%;
    font-size: 14px;
    padding: 13.5px 0 13.5px 0;
    position: relative;
    z-index: 1001; /* Overlay'den yüksek z-index */
}

.top-header p {
    font-family: "DM Sans", sans-serif;
    transform: scale(0.9);
}

header.desktop {
    display: flex;
    background: #fff;
    width: 100%;
    padding: 20px 10px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

header.desktop .menu {
    flex: 1;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0px 30px;
}

header.desktop .logo img {
    width: 114px;
}

header.desktop .header-buttons {
    display: flex;
    padding: 0px 20px;
}

header.desktop .header-buttons button {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

header.desktop .header-buttons button img {
    width: 1.5rem;
}

header.desktop .menu nav {
    display: flex;
    gap: 20px;
}

header.desktop .menu nav a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

header.desktop .menu nav a.active:after, header.desktop .menu nav a:hover:after {
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,10 Q25,0 50,10 T100,10" fill="none" stroke="%23000" stroke-width="4" /></svg>');
    background-repeat: repeat-x;
    background-position: center;
    background-size: 15px 5px;
    height: 10px;
    display: block;
    margin-top: 1px;
}

header.desktop .search-bar {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 4px;
    padding-left: 10px;
    width: 220px;
    transition: 300ms all;
    overflow: hidden;
}

header.desktop .search-bar input {
    width: 70%;
    padding: 6px;
    border: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
}

header.desktop .search-bar img {
    position: absolute;
    height: 1.2rem;
    top: 8px;
    right: 10px;
}

header.desktop .search-bar input:focus {
    outline: none;
}

header.desktop .search-bar.collapsed {
    width: 300px;
}

header.desktop .search-bar.collapsed:before {
    content: '';
    background: rgb(209 204 234);
    width: 40px;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

header.mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1002;
    background: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

header.mobile .hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1003;
  position: relative;
}

header.mobile .hamburger span {
  height: 4px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animasyon için aktif hali */
header.mobile .hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

header.mobile .hamburger.active span:nth-child(2) {
  opacity: 0;
}

header.mobile .hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


header.mobile .logo img {
    width: 65px;
}

header.mobile .search-button img {
    width: 24px;
}

header.mobile .search-button {
    cursor: pointer;
}

@media only screen and (max-width: 1024px){
    header.desktop {
        display: none;
    }

    header.mobile {
        display: flex;
    }
}

.announcement {
    background: #eaaca0;
    text-align: center;
    font-weight: bold;
    padding: 13px;
}

.announcement .top-line {
    margin-bottom: 15px;
}


.breadcrumb {
    width: 100%;
    font-size: 13px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: rgba(0,0,0,.8);
    text-decoration: none;
    transition: 300ms text-decoration;
    display: flex;
    align-items: center;
    letter-spacing: -0.2px;
    font-family: 'DM Sans', sans-serif;
}

.breadcrumb a:first-child {
    color: rgba(0,0,0,.7);
}

.breadcrumb a:not(:last-child)::after {
    content: '▸';
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    color: #000;
}

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

.products-section {
    display: flex;
    flex-direction: column;
    margin: 40px 15px;
}

.products-section .page-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

.products-section .page-info .title h3 {
    font-weight: bold;
    font-size: 1.5rem;
}

.products-section .page-info .description {
    max-width: 48rem;
}

.products-section .page-info .description p {
    font-size: 13px;
    line-height: 1.5rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.products-section .products-grid {
    display: flex;
    flex-direction: column;
}

.products-section .products-grid .filter-buttons {
    display: flex;
    justify-content: space-between;
}

.products-section .products-grid .filter-buttons button {
    background: rgb(254 247 228);
    border: 0;
    display: flex;
    align-items: center;
    height: 48px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    border-radius: 20px;
    gap: 10px;
    cursor: pointer;
}

.products-section .products-grid .filter-buttons button img {
    width: 17px;
}

.products-section .products-grid .filter-buttons button span {
    font-weight: bold;
}

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

@media (max-width: 1024px) {
  .products-section .products-grid .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-section .products-grid .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

.products-section .products-grid .products .product {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
    cursor: pointer;
}

.products-section .products-grid .products .product-img img.first-image {
    width: 100%;
    transform: scale(0.7);
    transition: opacity 0.2s ease;
}

.products-section .products-grid .products .product .product-img {
    background: #f7f1ee;
}

.products-section .products-grid .products .product-img img.hover-image {
    opacity: 0;
    position: absolute;
    left:0;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease;
}

.products-section .products-grid .products .product-img:hover {
    cursor: pointer;
}

.products-section .products-grid .products .product .product-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.products-section .products-grid .products .product .product-details a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.products-section .products-grid .products .product .product-details .product-price.with-discount span:first-child {
    color: rgb(178 16 16);
}

.products-section .products-grid .products .product .product-details .product-price.with-discount span:last-child {
    margin-left: 5px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: line-through;
}

.products-section .products-grid .products .product .discount-layer {
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.products-section .products-grid .products .product .discount-layer span {
  background-color: #eaaca0;
  color: #000;
  width: 90px;
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;

  /* maske ayarları */
  -webkit-mask-image: url('../images/splash.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  mask-image: url('../images/splash.svg');
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  font-size: 12px;
}

.products-section .products-grid .more-pages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.products-section .products-grid .more-pages button {
    border: 0;
    background-color: rgba(255,226,153);
    font-weight: bold;
    font-size: 14px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    border-radius: 40px;
    cursor: pointer;
    transition: 300ms background-color;
}

.products-section .products-grid .more-pages button:hover {
    background-color: rgba(255,226,153, 0.5);
}

.products-section .products-grid .more-pages .progress-bar {
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.products-section .products-grid .more-pages .progress-bar .bar {
    width: 100%;
    max-width: 256px;
    background-color: rgb(229, 231, 235);
    height: 4px;
    position: relative;
    margin-top: 5px;
    border-radius: 4px;
    overflow: hidden;
}

.products-section .products-grid .more-pages .progress-bar .bar .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #000;
    width: 0%;
    transition: 300ms width;
}

.seperator {
    background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 20\" preserveAspectRatio=\"none\"><path d=\"M0,10 Q25,0 50,10 T100,10\" fill=\"none\" stroke=\"%23B3B3B3\" stroke-width=\"2\" /></svg>");
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 40px 10px;
    height: 15px;
    opacity: 1;
    margin: 40px auto;
    width: 80vw;
    max-width: 1140px;
}

.page-description {
    display: flex;
    flex-direction: column;
    width: 80vw;
    max-width: 1140px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
}

.page-description .desc-header h2 {
    font-weight: 700;
    font-size: 20px;
}

.page-description .desc-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

@media only screen and (max-width: 768px){
    .page-description .desc-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.page-description .desc-container h3 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.page-description .desc-container p {
    font-size: 13px;
    line-height: 1.25rem;
    font-family: 'DM Sans', sans-serif;
    text-align: justify;
    margin-bottom: 20px;
}

.recently-viewed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.recently-viewed .title {
    font-weight: 700;
    font-size: 16px;
}

.recently-viewed .items {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px;
}

.recently-viewed .items img {
    width: 87px;
}

.taglines {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 64rem;
    gap: 1rem;
    padding: 20px;
}

.taglines figure {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 15px;
}

.taglines figure img {
    width: 25px;
}

.taglines figure figcaption {
    font-weight: 700;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

@media only screen and (max-width: 768px){
    .taglines {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .taglines figure {
        flex-direction: column;
    }
}

footer {
    background-color: rgb(194 216 184);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 30px;
}

footer .footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1190px;
    align-items: baseline;
    margin: 40px 0px 0 0;
}

footer .footer-menu .menu-column {
    display: inline-grid;
    justify-content: center;
}

@media only screen and (max-width: 768px){
	footer .footer-menu {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		padding: 0 40px;
	}

	footer .footer-menu .menu-column {
	    justify-content: flex-start !important;
	}

     footer .copyright {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

footer .footer-menu .menu-column p {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

footer .footer-menu .menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

footer .footer-menu .menu-column ul a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}

footer .footer-menu .menu-column ul a:hover {
    text-decoration: underline;
}

footer::before {
    content: '';
    overflow: hidden;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 20\" preserveAspectRatio=\"none\"><path d=\"M0,10 Q25,0 50,10 T100,10 V20 H0 Z\" fill=\"%23C2D8B8\" /></svg>");
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 100px 30px;
    width: 100%;
    height: 30px;
    opacity: 1;
    position: absolute;
    top: -25px;
}

footer .copyright {
    width: 80vw;
    max-width: 1140px;
    display: flex;
    margin: -20px auto 20px auto;
}

footer .copyright .site-infos {
    font-size: 11.2px;
    text-align: center;
    line-height: 1rem;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
}

footer .copyright .payment-logos {
    display: flex;
    gap: 10px;
}

footer .copyright .payment-logos .logo {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
}

footer .copyright .payment-logos .logo img {
    width: 35px;
}

/* Side Menu Genel Stiller */
.side-menu {
    position: fixed;
    left: -400px;
    width: calc(100vw - 40px);
    max-width: 400px;
    height: 100vh;
    max-height: 600px;
    background: #fef7e4;
    z-index: 1001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    bottom: 20px;
    border-radius: 20px;
    scrollbar-width: none;
}

.side-menu.active {
    left: 0;
}

/* Filter Menu için özel stil - sağdan açılsın */
.filter-menu {
    left: auto;
    right: -400px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-menu.active {
    right: 20px;
    left: auto;
}

/* Category Menu soldan açılmaya devam etsin */
.category-menu {
    left: -400px;
    right: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-menu.active {
    left: 20px;
    right: auto;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fef7e4;
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #000;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-menu:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-content {
    padding: 0;
}

/* Category Menu Stiller */
.category-item, .subcategory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.subcategory-item {
    padding-left: 48px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.category-item:hover, .subcategory-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.expand-icon {
    transition: transform 0.2s ease;
    color: #666;
}

.category-item.expanded .expand-icon,
.subcategory-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.subcategory-list {
    display: none;
}

.subcategory-list.active {
    display: block;
}

/* Filter Menu Stiller */
.filter-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}

.filter-tab {
    flex: 1;
    padding: 16px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

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

.tab-content {
    display: none;
    padding: 20px 24px;
}

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

.filter-section {
    margin-bottom: 32px;
}

.filter-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Color Options */
.color-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.color-option {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.color-option input {
    display: none;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.color-option input:checked + .color-circle {
    border-color: #000;
    transform: scale(1.1);
}

.color-option input[type="checkbox"]:checked + .color-circle::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
    pointer-events: none;
}

.color-option.white input[type="checkbox"]:checked + .color-circle::after {
    color: #000000;
    text-shadow: 2px 4px 3px rgba(255,255,255,0.3);
}

.color-option.black-white input[type="checkbox"]:checked + .color-circle::after {
    color: #000000;
    text-shadow: 2px 4px 3px rgba(255,255,255,0.3);
    background: rgba(74, 124, 89, 0.7);
}

.layout-options {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.layout-option {
    cursor: pointer;
    flex: 1;
}

.layout-option input {
    display: none;
}

.layout-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.layout-icon {
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f8f8f8;
    transition: all 0.2s ease;
    background-color: #fff;
}

.layout-icon.portrait {
    width: 5rem;
    height: 7rem;
}

.layout-icon.landscape {
    width: 7rem;
    height: 4rem;
}

.layout-icon.square {
    width: 5rem;
    height: 5rem;
}

.layout-visual span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.layout-option input:checked + .layout-visual .layout-icon {
    border-color: #ddd;
    background-color: #ddd;
}

.layout-option input:checked + .layout-visual span {
    color: #000;
    font-weight: 600;
}

/* Size Options - Buton tarzında */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.size-option {
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-button {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.size-option input:checked + .size-button {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.size-option:hover .size-button {
    border-color: #999;
}

/* Wavy separator line */
.filter-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='%23ddd' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    margin: 20px 0;
}

.filter-section:last-child::after {
    display: none;
}

/* Checkbox Options */
.checkbox-options, .radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-option, .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-option input, .radio-option input {
    display: none;
}

.checkmark, .radio-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.checkmark {
    border-radius: 3px;
}

.radio-mark {
    border-radius: 50%;
}

.checkbox-option input:checked + .checkmark {
    background-color: #000;
    border-color: #000;
}

.checkbox-option input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.radio-option input:checked + .radio-mark {
    border-color: #000;
}

.radio-option input:checked + .radio-mark::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    display: block;
    margin: 3px;
}

header.mobile .menu {
    position: absolute;
    top: 54px;
    left: -100%;
    width: 90vw;
    max-width: 360px;
    height: calc(100vh - 56px);
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 20px 6px 8px 0px;
}

header.mobile .menu.active {
    left: 0;
}

header.mobile .menu nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

header.mobile .menu nav a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgb(255 226 153);
    transition: color 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

header.mobile .menu nav a:hover {
    color: #666;
}


/* Overlay için stil */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll engellemek için */
body.menu-open {
    overflow: hidden;
}

/* Product Detail Page Styles */
.product-detail-container {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 20px;
    gap: 40px;
    position: relative;
    z-index: 20;
}

/* Product Images Section */
.product-images-section {
    display: flex;
    flex: 1.2;
    gap: 16px;
    position: sticky;
    top: 94px;
    height: fit-content;
}

.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 120px;
    max-height: 600px;
    overflow-y: auto;
}

.thumbnail-btn {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border: none;
    background: white;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transition: opacity 0.15s;
}

.thumbnail-btn.active .thumbnail-overlay {
    opacity: 0.25;
}

.thumbnail-btn:not(.active) .thumbnail-overlay {
    opacity: 0;
}

.main-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f3f0;
    border-radius: 12px;
    padding: 15% 10%;
    min-height: 545px;
    max-height: 600px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 438px;
    aspect-ratio: 3/4;
}

#main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Product Details Section */
.product-details-section {
    flex: 1;
    min-width: 600px;
    padding: 12px 16px;
    background: white;
    position: sticky;
    top: 80px;
    height: fit-content;
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    margin: 4px 0 16px 0;
    color: #000;
}

.product-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
}

.product-price-container .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.product-price-container .product-price.with-discount {
    color: #b21010;
}

.product-price-container .product-price.with-discount span {
    color: #4b5563;
    margin-left: 5px;
    font-weight: normal;
    font-size: 14px;
    text-decoration: line-through;
}

.discount-badge {
    position: absolute;
    top: -40px;
    right: 0;
    width: 90px;
    height: 80px;
    background-color: #eaaca0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    -webkit-mask-image: url('../images/splash.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    mask-image: url('../images/splash.svg');
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
}

/* Product Type Selection */
.product-type-selection {
    display: flex;
    gap: 16px;
    margin: 8px 0 16px 0;
}

.type-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 2px solid #ddd;
    border-radius: 24px;
    background: white;
    cursor: pointer;
    min-width: 128px;
    min-height: 44px;
    transition: all 0.2s ease;
}

.type-btn.active {
    border-color: #000;
    pointer-events: none;
}

.type-thumbnail {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.type-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-btn span {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Size Selection */
.size-selection-container {
    margin-bottom: 24px;
}

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

.size-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.measurement-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.measurement-btn {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.measurement-btn.active {
    color: #000;
    font-weight: bold;
}

.separator {
    color: #666;
    font-size: 14px;
}

.size-dropdown {
    position: relative;
}

.size-dropdown-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 2px solid #ddd;
    border-radius: 24px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.size-dropdown-btn:hover {
    border-color: #999;
}

.size-dropdown-btn.open {
    border-color: #000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.size-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.size-text {
    font-size: 16px;
    color: #000;
}

.size-price {
    margin-right: 20px;
}

.size-price .price-text {
    font-size: 16px;
    color: #000;
}

.size-price.with-discount {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.size-price.with-discount span:nth-child(1) {
    color: #b21010;
    font-size: 14px;
    font-weight: bold;
}

.size-price.with-discount span:nth-child(2) {
    font-size: 14px;
    font-weight: lighter;
    text-decoration: line-through;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.size-dropdown-btn.open .dropdown-arrow {
    transform: rotate(180deg);
}

.size-options-list {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #000;
    border-top: none;
    border-radius: 0 0 24px 24px;
    max-height: 204px;
    overflow-y: auto;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.size-options-list.open {
    opacity: 1;
    pointer-events: all;
}

.size-options-list .size-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin: 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.size-options-list .size-option:hover {
    background-color: #f0f0f0;
}

.size-options-list .size-option.active {
    background-color: #f0f0f0;
}

.selected-indicator {
    display: none;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 16px 24px;
    background: #f5d76e;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.add-to-cart-btn:hover {
    background: #f0d060;
}

.signup-btn {
    display: none;
}

/* Shipping Info */
.shipping-info {
    background: #c6d7bb;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.shipping-text {
    font-size: 14px;
    color: #000;
    margin: 0;
}

/* Delivery Info */
.delivery-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
    justify-content: center;
}

.delivery-icon {
    width: 24px;
    height: 24px;
}

.delivery-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.delivery-title {
    font-size: 14px;
    font-weight: 600;
    color: #4a7c59;
}

.delivery-subtitle {
    font-size: 12px;
    color: #666;
}

.wishlist-btn {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.stock-indicator {
    width: 8px;
    height: 8px;
    background: #4a7c59;
    border-radius: 50%;
}

.stock-status.out-of-stock .stock-indicator{
    background: #ff4444;
}

.stock-text {
    font-size: 14px;
    color: #4a7c59;
    font-weight: 500;
}

.stock-status.out-of-stock .stock-text {
    color: #ff4444;
}

/* Product Description */
.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.product-description p {
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-container {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }
    
    .product-images-section {
        position: static;
        flex-direction: column;
    }
    
    .product-details-section {
        min-width: auto;
        position: static;
    }
    
    .thumbnail-images {
        flex-direction: row;
        width: 100%;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        order: 2;
        padding: 10px 0;
    }
    
    .main-image-container {
        order: 1;
    }
    
    .thumbnail-btn {
        min-width: 80px;
        width: 80px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .product-detail-container {
        padding: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .thumbnail-btn {
        min-width: 70px;
        width: 70px;
    }
}

/* Lightbox Styles */
.lightbox-trigger {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-trigger:hover {
    opacity: 0.9;
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: block;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    max-height: 100vh;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 80vh;
    transform: translateX(0);
}

#lightbox-image.slide-left {
    transform: translateX(-100%);
    opacity: 0;
}

#lightbox-image.slide-right {
    transform: translateX(100%);
    opacity: 0;
}

#lightbox-image.zoomed {
    max-width: none;
    max-height: none;
    width: 100% !important;
    height: auto;
    cursor: grab;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#lightbox-image.zoomed:active {
    cursor: grabbing;
}

/* Image Counter */
.lightbox-counter {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

/* Navigation Buttons - Overlay üzerinde */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Control Buttons - Overlay üzerinde */
.lightbox-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10001;
}

.lightbox-zoom,
.lightbox-close {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-zoom:hover,
.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-image-container {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-controls {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-counter {
        top: 10px;
        left: 10px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .lightbox-zoom,
    .lightbox-close {
        width: 35px;
        height: 35px;
    }
}

/* Minimalist ve modern seçili kategori tasarımı */
.category-item.selected {
    background: #f7e9c1;
    position: relative;
}

.category-item.selected::after {
    content: '\2713'; /* Unicode tik işareti */
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #b48a2c;
    font-size: 1.2em;
    font-weight: bold;
}

/* Hover efektlerini kaldır */
.category-item,
.category-item.selected,
.category-item.selected:hover,
.category-item:hover {
    transition: none;
    border: none;
    color: inherit;
}

.custom-page {
    padding: 40px 20px;
    border: 1px solid #ddd;
    margin: 15px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.custom-page .page-title {
    text-align: center;
}

.custom-page .page-title h1 {
    font-weight: bold;
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
    "DM Sans", font-family: sans-serif;
}

.custom-page .page-content {
    font-family: "Dm Sans", sans-serif;
}